feat: Add Redis service to compose file

This commit is contained in:
Gauthier Daniels 2025-04-11 19:17:55 +02:00
parent 5611a6dc81
commit 30cf34268b
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1 @@
// TODO

View File

@ -12,3 +12,18 @@ services:
volumes:
- ./app:/app
restart: unless-stopped
networks:
- memento-data
memento-dev-redis:
container_name: memento-dev-redis
image: redis:alpine
volumes:
- redis-data:/data
restart: unless-stopped
networks:
- memento-data
networks:
memento-data:
driver: bridge