docs: fix stale Docker paths and park region counts
Build and Deploy / Build & Push (push) Successful in 1m10s

Update /app/data → /app/backend/data across all docs to match the
volume mount fix from 3c91d9a. Add missing TZ env var to the web
container snippet in OPERATIONS.md. Correct Midwest (6→7) and
West & International (6→5) park counts in ARCHITECTURE.md.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-24 09:37:02 -04:00
parent 3c91d9a453
commit 6f893b909f
3 changed files with 12 additions and 11 deletions
+1 -1
View File
@@ -256,7 +256,7 @@ docker build --target backend -t sixflagssupercalendar:backend .
docker compose up -d
# Or run individual containers
docker run -d -p 3001:3001 -v park_data:/app/data -e TZ=America/New_York sixflagssupercalendar:backend
docker run -d -p 3001:3001 -v park_data:/app/backend/data -e TZ=America/New_York sixflagssupercalendar:backend
docker run -d -p 3000:3000 -e BACKEND_URL=http://host.docker.internal:3001 sixflagssupercalendar:web
```