From f7ff2c2744900d8922aa70086048e24949e0b2ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Thu, 6 Nov 2025 21:56:38 +0100 Subject: [PATCH] fix: use correct relative path for RTC config mount MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed from ./drop/rtc_config.json to ./rtc_config.json since the compose file is already in the drop/ directory. The previous path caused Docker to create an empty directory instead of mounting the file. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- drop/compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drop/compose.yaml b/drop/compose.yaml index d63c383..b7c19de 100644 --- a/drop/compose.yaml +++ b/drop/compose.yaml @@ -4,7 +4,7 @@ services: container_name: ${DROP_COMPOSE_PROJECT_NAME}_app restart: unless-stopped volumes: - - ./drop/rtc_config.json:/rtc_config.json:ro + - ./rtc_config.json:/rtc_config.json:ro environment: PUID: 1000 PGID: 1000