Przeglądaj źródła

Actually use HORIZON_EMBED env in docker script.

chris 6 lat temu
rodzic
commit
f4b9e1fb27
1 zmienionych plików z 1 dodań i 1 usunięć
  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
 php artisan migrate --force
 
 
 # Run a worker if it is set as embedded
 # Run a worker if it is set as embedded
-if [ HORIZON_EMBED = true ]; then
+if [ $HORIZON_EMBED = true ]; then
 	php artisan horizon &
 	php artisan horizon &
 fi
 fi