1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-26 09:46:49 +00:00

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

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