1
0
Fork 0

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

[Docker] Actually use HORIZON_EMBED env in docker script.
This commit is contained in:
daniel 2018-10-04 15:17:59 -06:00 committed by GitHub
commit f003070a40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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