Skip to content

Commit

Permalink
fix for docker dev mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Roy Wiggins authored and Roy Wiggins committed Dec 13, 2024
1 parent 7331793 commit 71678a7
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions docker/docker-compose.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,31 @@ services:
<<: *env
<<: *volumes

worker_fast:
image: mercureimaging/mercure-worker:latest
restart: always
depends_on:
- redis
deploy:
replicas: 2
environment:
WORKER_QUEUE: mercure_fast
REDIS_URL: redis://redis:6379/0
<<: *volumes

worker_slow:
image: mercureimaging/mercure-worker:latest
restart: always
depends_on:
- redis
deploy:
replicas: 2
environment:
WORKER_QUEUE: mercure_slow
REDIS_URL: redis://redis:6379/0
<<: *volumes


volumes:
db-data:
driver: local
Expand Down

0 comments on commit 71678a7

Please sign in to comment.