Browse Source

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

[Docker] Actually use HORIZON_EMBED env in docker script.
daniel 6 năm trước cách đây
mục cha
commit
f003070a40
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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