fix: disable Redis RDB persistence to resolve overcommit_memory warning

Redis in LXC/Proxmox cannot change kernel vm.overcommit_memory.
Disabling RDB saves eliminates the warning with no functional impact
(Redis used only for heartbeat TTL cache, not persistent storage).
This commit is contained in:
datadunia
2026-06-26 22:21:37 +07:00
parent 192b753f5d
commit ca4107e2bc
+1
View File
@@ -20,6 +20,7 @@ services:
redis:
image: redis:7-alpine
command: redis-server --save "" --appendonly no
volumes:
- redisdata:/data
ports: