Compare commits

...

2 commits

Author SHA1 Message Date
9ea6050dd9
Change: Redis to KeyDB because of redis licence change 2024-04-10 13:03:21 +02:00
43808bd20c
Fix: celery app name 2024-04-10 13:01:52 +02:00

View file

@ -31,7 +31,7 @@ services:
#container_name: celery_worker
command: >
sh -c "cd archivist
&& celery -A archivist worker -l INFO"
&& celery -A core worker -l INFO"
volumes:
- .:/app/
environment:
@ -46,7 +46,7 @@ services:
image: git.aroy-art.com/aroy/gallery-archivist:dev
command: >
sh -c "cd archivist
&& celery -A archivist beat -l INFO"
&& celery -A core beat -l INFO"
volumes:
- .:/app/
environment:
@ -61,7 +61,7 @@ services:
image: git.aroy-art.com/aroy/gallery-archivist:dev
command: >
sh -c "cd archivist
&& celery -A archivist flower"
&& celery -A core flower"
volumes:
- .:/app/
environment:
@ -75,4 +75,4 @@ services:
redis:
image: "redis:alpine"
image: "eqalpha/keydb:latest"