docker-compose.override.yml
yaml
| 1 | # Development overrides — bind-mount source dirs so changes are reflected |
| 2 | # immediately without rebuilding the image. |
| 3 | # |
| 4 | # Active automatically when you run `docker compose` from this directory. |
| 5 | # Production deployments use docker-compose.yml alone (no override). |
| 6 | services: |
| 7 | musehub: |
| 8 | environment: |
| 9 | DEBUG: "true" |
| 10 | # Expose the muse source tree so the analysis service can import it. |
| 11 | PYTHONPATH: "/muse:/app" |
| 12 | volumes: |
| 13 | - ./musehub:/app/musehub |
| 14 | - ./tests:/app/tests |
| 15 | - ./tools:/app/tools |
| 16 | - ./scripts:/app/scripts |
| 17 | - ./alembic:/app/alembic |
| 18 | # Mount the muse package so MuseHub can import muse.plugins.code directly. |
| 19 | - /Users/gabriel/muse:/muse |