Adds redis image for activity streams
This commit is contained in:
parent
1025a2e4da
commit
ebc01362e6
3 changed files with 22 additions and 5 deletions
|
@ -31,11 +31,20 @@ services:
|
|||
depends_on:
|
||||
- db
|
||||
- celery_worker
|
||||
- redis_activity
|
||||
networks:
|
||||
- main
|
||||
ports:
|
||||
- 8000:8000
|
||||
redis:
|
||||
redis_activity:
|
||||
image: redis
|
||||
env_file: .env
|
||||
ports:
|
||||
- 6378:6378
|
||||
networks:
|
||||
- main
|
||||
restart: on-failure
|
||||
redis_broker:
|
||||
image: redis
|
||||
env_file: .env
|
||||
ports:
|
||||
|
@ -55,7 +64,7 @@ services:
|
|||
- media_volume:/app/images
|
||||
depends_on:
|
||||
- db
|
||||
- redis
|
||||
- redis_broker
|
||||
restart: on-failure
|
||||
flower:
|
||||
build: .
|
||||
|
@ -67,7 +76,7 @@ services:
|
|||
- main
|
||||
depends_on:
|
||||
- db
|
||||
- redis
|
||||
- redis_broker
|
||||
restart: on-failure
|
||||
ports:
|
||||
- 8888:8888
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue