From 81482b2831ee91151fc485c8a99b8582cc35d27f Mon Sep 17 00:00:00 2001 From: pjv Date: Sat, 7 Feb 2026 08:28:27 -0600 Subject: [PATCH] Two important fixes Two fixes: 1. TS_ACCEPT_DNS is an environment variable, not a config 2. CRITICAL CHANGE: wrong path to data directory for pocket ID results in losing entire config when you bring down the container :^( --- services/pocket-id/compose.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/pocket-id/compose.yaml b/services/pocket-id/compose.yaml index a6b27d0..e3f0735 100644 --- a/services/pocket-id/compose.yaml +++ b/services/pocket-id/compose.yaml @@ -22,10 +22,10 @@ services: - TS_USERSPACE=false - TS_ENABLE_HEALTH_CHECK=true # Enable healthcheck endpoint: "/healthz" - TS_LOCAL_ADDR_PORT=127.0.0.1:41234 # The : for the healthz endpoint + #- TS_ACCEPT_DNS=true # Uncomment when using MagicDNS configs: - source: ts-serve target: /config/serve.json - #- TS_ACCEPT_DNS=true # Uncomment when using MagicDNS volumes: - ./config:/config # Config folder used to store Tailscale files - you may need to change the path - ./ts/state:/var/lib/tailscale # Tailscale requirement - you may need to change the path @@ -53,7 +53,7 @@ services: container_name: app-${SERVICE} # Name for local container management env_file: .env volumes: - - ./${SERVICE}-data:/app/backend/data + - ./${SERVICE}-data:/app/data depends_on: tailscale: condition: service_healthy