From 2d7c2a93b79c35ea0425e10a687ad82956bef72b Mon Sep 17 00:00:00 2001 From: James Wampler Date: Wed, 19 Aug 2026 14:48:15 -0700 Subject: [PATCH] fix: bind mount path is /mnt/storage/apps (typo) --- deploy/qa/docker-compose.qa.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/qa/docker-compose.qa.yml b/deploy/qa/docker-compose.qa.yml index a4b4e99..0b7bfad 100644 --- a/deploy/qa/docker-compose.qa.yml +++ b/deploy/qa/docker-compose.qa.yml @@ -2,7 +2,7 @@ name: novelly # Persistent LAN deployment, pulled and recreated by CI on every push to main. # Unlike a throwaway QA stack, this one keeps its data across deploys — `down` is run -# without `-v` and /data is a bind mount to /mnt/storage/app/novelly/data on the host, +# without `-v` and /data is a bind mount to /mnt/storage/apps/novelly/data on the host, # not a docker-managed volume, so the author's novel data survives a redeploy. services: @@ -14,7 +14,7 @@ services: Cors__Origins__0: "http://localhost:${WEB_PORT:-6173}" ANTHROPIC_API_KEY: ${ANTHROPIC_API_KEY:-} volumes: - - /mnt/storage/app/novelly/data:/data + - /mnt/storage/apps/novelly/data:/data networks: - novelly healthcheck: @@ -44,7 +44,7 @@ services: environment: ConnectionStrings__Novel: "Data Source=/data/novel.db" volumes: - - /mnt/storage/app/novelly/data:/data + - /mnt/storage/apps/novelly/data:/data networks: - novelly profiles: ["tools"]