From ca4107e2bcd3e81885f5dd46e0fe4bf33da73b99 Mon Sep 17 00:00:00 2001 From: datadunia Date: Fri, 26 Jun 2026 22:21:37 +0700 Subject: [PATCH] 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). --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index 4a0824c..b378077 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -20,6 +20,7 @@ services: redis: image: redis:7-alpine + command: redis-server --save "" --appendonly no volumes: - redisdata:/data ports: