gabriel / musehub public
docker-compose.override.yml yaml
23 lines 637 B
46e1fc12 Add docker-compose.yml, dev override, and .env.example Gabriel Cardona <gabriel@tellurstori.com> 6d ago
1 # Development overrides — bind-mount source code so changes take effect
2 # without a full image rebuild. Loaded automatically by docker compose.
3 services:
4 muse:
5 build:
6 context: .
7 target: builder
8 volumes:
9 - ./musehub:/app/musehub
10 - ./tests:/app/tests
11 - ./alembic:/app/alembic
12 - ./scripts:/app/scripts
13 - ./tourdeforce:/app/tourdeforce
14 - muse_data:/data
15 environment:
16 DEBUG: "true"
17 CORS_ORIGINS: '["http://localhost:10003", "muse://"]'
18 # Reload on code changes
19 command: >
20 uvicorn musehub.main:app
21 --host 0.0.0.0
22 --port 10003
23 --reload