From 7f892a47d7c03071a07c9794addf8edf7ec2d711 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sat, 8 Nov 2025 18:53:26 +0100 Subject: [PATCH] fix: mount individual Netdata config files instead of directory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed from mounting entire go.d directory to mounting specific config files (postgres.conf, filecheck.conf) to avoid conflicts with Netdata's initialization script which needs to write to the go.d directory during startup. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- netdata/compose.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/netdata/compose.yaml b/netdata/compose.yaml index 253be61..1aae8d2 100644 --- a/netdata/compose.yaml +++ b/netdata/compose.yaml @@ -13,7 +13,8 @@ services: - netdata_config:/etc/netdata - netdata_lib:/var/lib/netdata - netdata_cache:/var/cache/netdata - - ./go.d:/etc/netdata/go.d:ro + - ./go.d/postgres.conf:/etc/netdata/go.d/postgres.conf:ro + - ./go.d/filecheck.conf:/etc/netdata/go.d/filecheck.conf:ro - /mnt/hidrive/users/valknar/Backup:/mnt/hidrive/users/valknar/Backup:ro - /etc/passwd:/host/etc/passwd:ro - /etc/group:/host/etc/group:ro