docker-compose.override.yml
yaml
| 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 | musehub: |
| 5 | build: |
| 6 | context: . |
| 7 | volumes: |
| 8 | - ./musehub:/app/musehub |
| 9 | - ./tests:/app/tests |
| 10 | - ./alembic:/app/alembic |
| 11 | - ./scripts:/app/scripts |
| 12 | - ./tourdeforce:/app/tourdeforce |
| 13 | - musehub_data:/data |
| 14 | environment: |
| 15 | DEBUG: "true" |
| 16 | CORS_ORIGINS: '["http://localhost:10003", "muse://"]' |
| 17 | # Reload on code changes |
| 18 | command: > |
| 19 | uvicorn musehub.main:app |
| 20 | --host 0.0.0.0 |
| 21 | --port 10003 |
| 22 | --reload |