From f4b9e1fb270eeb3db8882e2c887494c5ba7d45dc Mon Sep 17 00:00:00 2001 From: chris Date: Mon, 1 Oct 2018 12:05:33 +0200 Subject: [PATCH] Actually use HORIZON_EMBED env in docker script. --- contrib/docker/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/docker/start.sh b/contrib/docker/start.sh index be374a914..59c54b978 100755 --- a/contrib/docker/start.sh +++ b/contrib/docker/start.sh @@ -9,7 +9,7 @@ php artisan storage:link php artisan migrate --force # Run a worker if it is set as embedded -if [ HORIZON_EMBED = true ]; then +if [ $HORIZON_EMBED = true ]; then php artisan horizon & fi