From 126944d1cd5674653bb6dd3bdde8d38cc43c74bb Mon Sep 17 00:00:00 2001 From: Marvin Zhang Date: Sun, 7 Jul 2019 16:30:37 +0800 Subject: [PATCH] updated docker_init.sh --- docker_init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker_init.sh b/docker_init.sh index 23d9cfa4..2404580c 100755 --- a/docker_init.sh +++ b/docker_init.sh @@ -7,7 +7,7 @@ case $1 in python $WORK_DIR/crawlab/flower.py >> /opt/crawlab/flower.log 2>&1 & python $WORK_DIR/crawlab/worker.py >> /opt/crawlab/worker.log 2>&1 & cd $WORK_DIR/crawlab \ - && gunicorn --log-level=DEBUG -b 0.0.0.0 -w 8 $WORK_DIR/crawlab/app:app + && gunicorn --log-level=DEBUG -b 0.0.0.0 -w 8 app:app ;; worker) python $WORK_DIR/crawlab/app.py >> /opt/crawlab/app.log 2>&1 &