Compare commits

..

No commits in common. "9ea6050dd9223fe473f9d7a0cba01b06e49aeb8d" and "b0161d0d23eda4b44113148828daac3be0d9c70c" have entirely different histories.

View file

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