Skip to content

Commit ea40f0b

Browse files
Make config.yml writable for admin updates
1 parent 21c89ee commit ea40f0b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

backends/advanced/docker-compose-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
- ./data/test_audio_chunks:/app/audio_chunks
1515
- ./data/test_debug_dir:/app/debug_dir
1616
- ./data/test_data:/app/data
17-
- ${CONFIG_FILE:-../../config/config.yml}:/app/config.yml:ro # Mount config.yml for model registry and memory settings
17+
- ${CONFIG_FILE:-../../config/config.yml}:/app/config.yml # Mount config.yml for model registry and memory settings (writable for admin config updates)
1818
environment:
1919
# Override with test-specific settings
2020
- MONGODB_URI=mongodb://mongo-test:27017/test_db
@@ -160,7 +160,7 @@ services:
160160
- ./data/test_audio_chunks:/app/audio_chunks
161161
- ./data/test_debug_dir:/app/debug_dir
162162
- ./data/test_data:/app/data
163-
- ${CONFIG_FILE:-../../config/config.yml}:/app/config.yml:ro # Mount config.yml for model registry and memory settings
163+
- ${CONFIG_FILE:-../../config/config.yml}:/app/config.yml # Mount config.yml for model registry and memory settings (writable for admin config updates)
164164
environment:
165165
# Same environment as backend
166166
- MONGODB_URI=mongodb://mongo-test:27017/test_db
@@ -283,4 +283,4 @@ networks:
283283
# - --force-recreate for clean state
284284
# - Volume cleanup between test runs
285285
# - Environment variables can be injected via GitHub secrets
286-
# - Health checks ensure services are ready before tests run
286+
# - Health checks ensure services are ready before tests run

0 commit comments

Comments
 (0)