compose.yaml erneut hinzugefügt

This commit is contained in:
2026-03-23 16:02:15 +01:00
parent c7a890f917
commit c19bb06603
23 changed files with 906 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
services:
redis:
image: redis:latest
container_name: redis
labels:
- wud.watch=true
restart: unless-stopped
# command: redis-server --loglevel error
deploy:
resources:
limits:
memory: 256M
ports:
- 9379:6379
volumes:
- ./data:/data
healthcheck:
test: ["CMD-SHELL", "redis-cli ping || exit 1"]
interval: 10s
timeout: 5s
retries: 3
networks: {}