From 9b8d294aa664bec4ce65321215c9e3a861a76525 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Thu, 6 Nov 2025 21:55:30 +0100 Subject: [PATCH] fix: correct RTC_CONFIG volume mount path for PairDrop MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed mount path from /config/rtc_config.json to /rtc_config.json to resolve EISDIR error where container was trying to read a directory instead of the file. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- drop/compose.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drop/compose.yaml b/drop/compose.yaml index 3b9b24d..d63c383 100644 --- a/drop/compose.yaml +++ b/drop/compose.yaml @@ -4,14 +4,14 @@ services: container_name: ${DROP_COMPOSE_PROJECT_NAME}_app restart: unless-stopped volumes: - - ./drop/rtc_config.json:/config/rtc_config.json:ro + - ./drop/rtc_config.json:/rtc_config.json:ro environment: PUID: 1000 PGID: 1000 TZ: ${TIMEZONE:-Europe/Berlin} RATE_LIMIT: true WS_FALLBACK: false - RTC_CONFIG: /config/rtc_config.json + RTC_CONFIG: /rtc_config.json networks: - compose_network labels: