From ee72137f9679658269c14f6b72e61d25a180a214 Mon Sep 17 00:00:00 2001 From: Deon George Date: Mon, 7 May 2018 13:45:43 +1000 Subject: [PATCH] Enabled tuning queue:work --- start | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/start b/start index f873117..13ee5e7 100755 --- a/start +++ b/start @@ -1,18 +1,19 @@ #!/bin/sh +set -e +role=${CONTAINER_ROLE:-app} +env=${APP_ENV:-production} + +# General Setup if [ -x /usr/sbin/sshd -a "${SSH_START}" = "TRUE" ]; then [ ! -d /var/run/sshd ] && mkdir /var/run/sshd start-stop-daemon --start --pidfile /var/run/sshd.pid --exec /usr/sbin/sshd -- -p 22 fi -set -e - -role=${CONTAINER_ROLE:-app} -env=${APP_ENV:-production} - +# Laravel Specific if [ "${env}" != "local" -a -r "artisan" ]; then echo "Caching configuration..." - (cd /var/www/html && php artisan config:cache && php artisan route:cache && php artisan view:cache) + (php artisan config:cache && php artisan route:cache && php artisan view:cache) fi if [ "${role}" = "app" ]; then @@ -22,12 +23,12 @@ if [ "${role}" = "app" ]; then elif [ "$role" = "queue" ]; then echo "Running the queue..." - php /var/www/html/artisan queue:work --verbose --tries=3 --timeout=90 + php artisan queue:work --verbose --tries=${WORK_TRIES:-1} --timeout=${WORK_TIMEOUT:-90} ${WORK_QUEUES:+--queue=${WORK_QUEUES}} ${WORK_MEMORY:+--memory=${WORK_MEMORY}} elif [ "$role" = "scheduler" ]; then while [ true ]; do - php /var/www/html/artisan schedule:run --verbose --no-interaction & + php artisan schedule:run --verbose --no-interaction & sleep 60 done