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:
@@ -10,6 +10,9 @@ services:
|
|||||||
- "8000:8000"
|
- "8000:8000"
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app
|
- .:/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:
|
environment:
|
||||||
- REDIS_URL=redis://redis:6379/0
|
- REDIS_URL=redis://redis:6379/0
|
||||||
- CELERY_BROKER_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
|
command: celery -A app.tasks.worker.celery_app worker --loglevel=info
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app
|
- .:/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:
|
environment:
|
||||||
- REDIS_URL=redis://redis:6379/0
|
- REDIS_URL=redis://redis:6379/0
|
||||||
- CELERY_BROKER_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
|
command: celery -A app.tasks.worker.celery_app beat --loglevel=info
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app
|
- .:/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:
|
environment:
|
||||||
- REDIS_URL=redis://redis:6379/0
|
- REDIS_URL=redis://redis:6379/0
|
||||||
- CELERY_BROKER_URL=redis://redis:6379/0
|
- CELERY_BROKER_URL=redis://redis:6379/0
|
||||||
|
|||||||
@@ -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)
|
- **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.
|
- **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
|
||||||
|
---
|
||||||
|
|||||||
Reference in New Issue
Block a user