Renamed redis role

This commit is contained in:
2025-07-12 17:58:04 +02:00
parent e2b5491e1f
commit 46bba3564d
5 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
# This template needs to be included in docker-compose.yml, which depend on redis
redis:
image: redis:alpine
container_name: {{application_id}}-redis
restart: {{docker_restart_policy}}
logging:
driver: journald
volumes:
- redis:/data
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 1s
timeout: 3s
retries: 30
networks:
- default
{{ "\n" }}