vor Instanzumbau
All checks were successful
release-tag / release-image (push) Successful in 1m33s

This commit is contained in:
2025-06-09 23:17:39 +02:00
parent eee9783562
commit 817d997263
2 changed files with 27 additions and 1 deletions

View File

@@ -23,7 +23,17 @@ services:
container_name: ipblock-redis
networks:
- flod_nw
command: ["redis-server", "--save", "", "--appendonly", "no"] # reine In-Memory-Instanz
command:
- redis-server
- --bind
- 0.0.0.0
- --protected-mode
- "no" # nur nötig, wenn Port 6379 veröffentlicht wird
- --save # leere save-Liste = kein RDB-Snapshot
- "/data/dump.rdb" # ^^^
- --appendonly
- "no"
volumes:
- redis-data:/data # falls du doch Persistence willst
restart: unless-stopped