From f8a531cc66de86c2947573113ed96835a0276fe9 Mon Sep 17 00:00:00 2001 From: host Date: Fri, 28 Aug 2026 17:51:43 +0300 Subject: [PATCH] Fix: use absolute paths for build.context and volumes (relative '.' is unreliable under Dockge on TrueNAS SCALE) --- compose.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compose.yaml b/compose.yaml index 8fbe4fc..4c937d7 100644 --- a/compose.yaml +++ b/compose.yaml @@ -1,7 +1,7 @@ services: truenas-mcp: build: - context: . + context: /mnt/ssd/apps/mcp/truenas dockerfile: Dockerfile container_name: truenas-mcp restart: unless-stopped @@ -15,4 +15,4 @@ services: TRUENAS_ENABLE_DESTRUCTIVE_OPS: "false" TRUENAS_LOG_LEVEL: "INFO" volumes: - - ./config.json:/app/config.json:ro + - /mnt/ssd/apps/mcp/truenas/config.json:/app/config.json:ro