Files
kjvstudy.org/docker-compose.yml
T
kennethreitz a66f457747 Revert docker-compose to direct uvicorn (no nginx)
Keep nginx only for production (Fly.io). Local dev uses uvicorn
directly for simpler hot-reloading.

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-30 02:08:14 -05:00

15 lines
358 B
YAML

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