diff --git a/docker-compose.yml b/docker-compose.yml index 77bfaa7..5412067 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,6 +10,9 @@ services: - "8000:8000" volumes: - .:/app + - /home/locpham/daw_assets/vst3:/opt/daw_engine/vst3 + - /home/locpham/daw_assets/soundfonts:/opt/daw_engine/soundfonts + - /home/locpham/daw_assets/pianobook:/opt/daw_engine/samples/pianobook environment: - REDIS_URL=redis://redis:6379/0 - CELERY_BROKER_URL=redis://redis:6379/0 @@ -22,6 +25,9 @@ services: command: celery -A app.tasks.worker.celery_app worker --loglevel=info volumes: - .:/app + - /home/locpham/daw_assets/vst3:/opt/daw_engine/vst3 + - /home/locpham/daw_assets/soundfonts:/opt/daw_engine/soundfonts + - /home/locpham/daw_assets/pianobook:/opt/daw_engine/samples/pianobook environment: - REDIS_URL=redis://redis:6379/0 - CELERY_BROKER_URL=redis://redis:6379/0 @@ -34,6 +40,9 @@ services: command: celery -A app.tasks.worker.celery_app beat --loglevel=info volumes: - .:/app + - /home/locpham/daw_assets/vst3:/opt/daw_engine/vst3 + - /home/locpham/daw_assets/soundfonts:/opt/daw_engine/soundfonts + - /home/locpham/daw_assets/pianobook:/opt/daw_engine/samples/pianobook environment: - REDIS_URL=redis://redis:6379/0 - CELERY_BROKER_URL=redis://redis:6379/0 diff --git a/wiki.md b/wiki.md index 2fb4a40..2f54924 100644 --- a/wiki.md +++ b/wiki.md @@ -276,3 +276,9 @@ - **Files:** `requirements.txt`, `app/core/soundfont_inspector.py` (new), `app/api/v1/plugins.py`, `app/core/vst_engine.py`, `app/core/render_engine.py`, `app/static/js/services/aiGateway.js`, `app/static/js/services/api.js`, `app/static/js/services/soundfontPlayer.js`, `app/static/js/app.jsx`, `Dockerfile`, `.gitignore`, `vst_plugins/` (new), `samples/pianobook/` (new) - **Tests:** `python3 -m pytest tests/ -v` → 61 passed, 1 pre-existing failure. Python syntax check OK on all modified files. --- + +### [2026-07-26 16:11] Task: Mount daw_assets host dirs into Docker +- **Summary:** Created `/home/locpham/daw_assets/{vst3,soundfonts,pianobook}` on host. Mounted them into `web`, `worker`, and `beat` containers at `/opt/daw_engine/vst3`, `/opt/daw_engine/soundfonts`, `/opt/daw_engine/samples/pianobook`. +- **Files:** `docker-compose.yml` +- **Tests:** N/A +---