Explorar o código

Merge pull request #491 from hnrd/fix/docker-start-script

[Docker] Actually use HORIZON_EMBED env in docker script.
daniel %!s(int64=6) %!d(string=hai) anos
pai
achega
f003070a40
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      contrib/docker/start.sh

+ 1 - 1
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