Message ID | f1dbcde4c468b1bc4df0762c24d9b09e5c728670.1642138698.git.tim.orling@konsulko.com |
---|---|
State | New |
Headers | show |
Series | [layerindex,v2,01/18] dockersetup.py: fix EMAIL_USE_SSL/TLS | expand |
diff --git a/docker-compose.yml b/docker-compose.yml index 3e16e95..2dfff41 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -80,7 +80,7 @@ services: #- "EMAIL_USE_TLS=<set this here if needed>" #- "DEBUG=1" restart: unless-stopped - command: /usr/local/bin/celery -A layerindex.tasks worker --loglevel=info --workdir=/opt/layerindex + command: /usr/local/bin/celery --workdir=/opt/layerindex --app layerindex.tasks worker --loglevel=INFO #layerscertbot: # image: certbot/certbot # volumes:
In celery 5, the --workdir argument must come before the 'worker' subcommand. Without this, celery cannot load the layerindex module and this causes the celery container to continually restart. Signed-off-by: Tim Orling <tim.orling@konsulko.com> --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)