From de6c95d2564acde52cda9a02a5e40a1669d5f585 Mon Sep 17 00:00:00 2001 From: Brad Koehn Date: Mon, 12 Nov 2018 13:21:27 -0600 Subject: [PATCH 1/2] fixed a bash scripting bug in start.sh that prevented horizon from ever starting --- contrib/docker/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/docker/start.sh b/contrib/docker/start.sh index 1367b8635..079f6be91 100755 --- a/contrib/docker/start.sh +++ b/contrib/docker/start.sh @@ -12,7 +12,7 @@ php artisan migrate --force php artisan update # Run a worker if it is set as embedded -if [ $HORIZON_EMBED = true ]; then +if [ "$HORIZON_EMBED" -eq "true" ]; then php artisan horizon & fi From c554bcd84e6bf8078620bbc0ca83c19c9ec808a1 Mon Sep 17 00:00:00 2001 From: Brad Koehn Date: Wed, 14 Nov 2018 12:11:08 -0600 Subject: [PATCH 2/2] updated to use correct '=' operator by request --- contrib/docker/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/docker/start.sh b/contrib/docker/start.sh index 079f6be91..eed8a259a 100755 --- a/contrib/docker/start.sh +++ b/contrib/docker/start.sh @@ -12,7 +12,7 @@ php artisan migrate --force php artisan update # Run a worker if it is set as embedded -if [ "$HORIZON_EMBED" -eq "true" ]; then +if [ "$HORIZON_EMBED" = "true" ]; then php artisan horizon & fi