initial commit

This commit is contained in:
2026-05-29 17:12:19 +02:00
commit a8593afa61
24 changed files with 1322 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
services:
redis:
image: redis:7.2-alpine
container_name: redis
restart: unless-stopped
environment:
REDIS_PASSWORD: ${REDIS_PASSWORD}
command:
- redis-server
- --requirepass
- ${REDIS_PASSWORD}
- --appendonly
- "yes"
- --appendfsync
- everysec
volumes:
- ./data:/data
healthcheck:
test: ["CMD-SHELL", "redis-cli -a \"$$REDIS_PASSWORD\" PING | grep -q PONG"]
interval: 10s
timeout: 3s
retries: 5
networks:
- edge
networks:
edge:
external: true