1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pixelfed_ynh.git synced 2024-09-03 20:06:04 +02:00

Actually use HORIZON_EMBED env in docker script.

This commit is contained in:
chris 2018-10-01 12:05:33 +02:00
parent af5cc6e557
commit f4b9e1fb27

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