Files
kjvstudy.org/docker-compose.yml
T
kennethreitz 9aab232937 Fix missing bible import in study guides routes
The bible module was only imported inside get_books() but was
referenced in study_guide_detail() for verse lookups, causing
all verse texts to fail silently.

Also excludes .venv from Docker volume mount to prevent
local/container environment conflicts.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-25 20:45:55 -05:00

14 lines
301 B
YAML

services:
web:
build: .
ports:
- "8000:8000"
volumes:
- .:/app
- /app/.venv
environment:
- PYTHONUNBUFFERED=1
- PRELOAD_INTERLINEAR=true
restart: unless-stopped
command: uv run uvicorn kjvstudy_org.server:app --host 0.0.0.0 --port 8000 --reload