File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ services:
1818 - AWS_REGION=us-east-1
1919 - AWS_ACCESS_KEY_ID=test
2020 - AWS_SECRET_ACCESS_KEY=test
21- - DISABLE_QUEUE_WORKER=false
21+ - DISABLE_QUEUE_WORKER=true
2222 build :
2323 context : ./
2424 dockerfile : Dockerfile
Original file line number Diff line number Diff line change 11#! /bin/sh
22cd /home/app/webapp
3+
4+ # Redirect stdout and stderr to the same place
35exec 2>&1
46
5- # Disabled with DISABLE_QUEUE_WORKER, start shoryuken
7+ # Disble starting the queue worker when the environment variable DISABLE_QUEUE_WORKER is set to "true".
8+ # This value is set in the docker-compose.yml file
69if [ " $DISABLE_QUEUE_WORKER " != " true" ]; then
710 exec /sbin/setuser app bundle exec shoryuken -R -C config/shoryuken.yml
811fi
You can’t perform that action at this time.
0 commit comments