build(docker): mount daw_assets host dirs into containers

- /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
- Applied to web, worker, and beat services
This commit is contained in:
2026-07-26 16:11:41 +07:00
parent 89c7237379
commit f25a574126
2 changed files with 15 additions and 0 deletions
+6
View File
@@ -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
---