File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 4242 export RABBITMQ_PASSWORD="${{ secrets.RABBITMQ_PASSWORD }}"
4343 export DOCKER_USERNAME="${{ secrets.DOCKER_USERNAME }}"
4444 export DOCKER_IMAGE_NAME="${{ secrets.DOCKER_IMAGE_NAME }}"
45+ export DOCKER_CELERY_NAME="${{ secrets.DOCKER_CELERY_NAME }}"
4546
4647 export TRAEFIK_DASHBOARD_AUTH="${{ secrets.TRAEFIK_DASHBOARD_AUTH }}"
4748
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ services:
6161 - 5672
6262
6363 celery_worker :
64- image : ${DOCKER_USERNAME}/${DOCKER_IMAGE_NAME }:latest
64+ image : ${DOCKER_USERNAME}/${DOCKER_CELERY_NAME }:latest
6565 container_name : celery_worker
6666 # command: sh -c "celery -A backend worker --loglevel=info"
6767 command : celery -A backend worker --concurrency=4 --loglevel=info
@@ -82,7 +82,7 @@ services:
8282 tty : true
8383
8484 celery_worker_dlq :
85- image : ${DOCKER_USERNAME}/${DOCKER_IMAGE_NAME }:latest
85+ image : ${DOCKER_USERNAME}/${DOCKER_CELERY_NAME }:latest
8686 container_name : celery_worker_dlq
8787 command : celery -A backend worker --loglevel=info -Q dlq_notify_queue
8888 volumes :
@@ -101,7 +101,7 @@ services:
101101 tty : true
102102
103103 celery_beat :
104- image : ${DOCKER_USERNAME}/${DOCKER_IMAGE_NAME }:latest
104+ image : ${DOCKER_USERNAME}/${DOCKER_CELERY_NAME }:latest
105105 container_name : celery_beat
106106 command : sh -c "celery -A backend beat --loglevel=info"
107107 environment :
You can’t perform that action at this time.
0 commit comments