File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed
Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,6 @@ services:
1717 backend :
1818 image : ${DOCKER_USERNAME}/${DOCKER_IMAGE_NAME}:latest
1919 container_name : backend
20- volumes :
21- - ./:/app
2220 environment :
2321 - DJANGO_SETTINGS_MODULE=backend.settings.prod
2422 command : >
@@ -56,8 +54,6 @@ services:
5654 celery_worker :
5755 image : ${DOCKER_USERNAME}/${DOCKER_IMAGE_NAME}:latest
5856 container_name : celery_worker
59- volumes :
60- - ./:/app
6157 # command: sh -c "celery -A backend worker --loglevel=info"
6258 command : celery -A backend worker --concurrency=4 --loglevel=info
6359 environment :
@@ -73,8 +69,6 @@ services:
7369 image : ${DOCKER_USERNAME}/${DOCKER_IMAGE_NAME}:latest
7470 container_name : celery_worker_dlq
7571 command : celery -A backend worker --loglevel=info -Q dlq_notify_queue
76- volumes :
77- - ./:/app
7872 environment :
7973 - CELERY_BROKER_URL=amqp://guest:guest@rabbitmq:5672//
8074 - DJANGO_SETTINGS_MODULE=backend.settings.prod
@@ -87,8 +81,6 @@ services:
8781 celery_beat :
8882 image : ${DOCKER_USERNAME}/${DOCKER_IMAGE_NAME}:latest
8983 container_name : celery_beat
90- volumes :
91- - ./:/app
9284 command : sh -c "celery -A backend beat --loglevel=info"
9385 environment :
9486 - CELERY_BROKER_URL=amqp://guest:guest@rabbitmq:5672//
You can’t perform that action at this time.
0 commit comments