feat: Add Redis service to compose file
Some checks failed
Update Memento Dev on VPS / deploy (push) Has been cancelled

This commit is contained in:
Gauthier Daniels 2025-04-17 13:42:06 +02:00
parent dde25d6d9d
commit 11fd05e492

View File

@ -12,6 +12,17 @@ services:
volumes:
- ./app:/app
restart: unless-stopped
networks:
- memento-data
redis:
container_name: memento-redis
image: redis:alpine
restart: unless-stopped
volumes:
- redis-data:/data
networks:
- memento-data
networks:
memento-data: