Persistence for redis images

This commit is contained in:
Mouse Reeve 2021-04-15 14:55:08 -07:00
parent addbf6771e
commit cda5be65f8

View file

@ -40,20 +40,26 @@ services:
- 8000:8000 - 8000:8000
redis_activity: redis_activity:
image: redis image: redis
command: ["redis-server", "--appendonly", "yes"]
env_file: .env env_file: .env
ports: ports:
- 6378:6378 - 6378:6378
networks: networks:
- main - main
restart: on-failure restart: on-failure
volumes:
- redis_activity_data:/data
redis_broker: redis_broker:
image: redis image: redis
command: ["redis-server", "--appendonly", "yes"]
env_file: .env env_file: .env
ports: ports:
- 6379:6379 - 6379:6379
networks: networks:
- main - main
restart: on-failure restart: on-failure
volumes:
- redis_broker_data:/data
celery_worker: celery_worker:
env_file: .env env_file: .env
build: . build: .
@ -86,5 +92,7 @@ volumes:
pgdata: pgdata:
static_volume: static_volume:
media_volume: media_volume:
redis_broker_data:
redis_activity_data:
networks: networks:
main: main: