diff --git a/contrib/docker/start.sh b/contrib/docker/start.sh index 6f99cb449..7bc26c0db 100755 --- a/contrib/docker/start.sh +++ b/contrib/docker/start.sh @@ -12,7 +12,7 @@ gosu www-data:www-data php artisan migrate --force gosu www-data:www-data php artisan update # Run a worker if it is set as embedded -if [ $HORIZON_EMBED = true ]; then +if [ "$HORIZON_EMBED" = "true" ]; then gosu www-data:www-data php artisan horizon & fi