You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: backends/advanced/docker-compose-test.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ services:
14
14
- ./data/test_audio_chunks:/app/audio_chunks
15
15
- ./data/test_debug_dir:/app/debug_dir
16
16
- ./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)
18
18
environment:
19
19
# Override with test-specific settings
20
20
- MONGODB_URI=mongodb://mongo-test:27017/test_db
@@ -160,7 +160,7 @@ services:
160
160
- ./data/test_audio_chunks:/app/audio_chunks
161
161
- ./data/test_debug_dir:/app/debug_dir
162
162
- ./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)
164
164
environment:
165
165
# Same environment as backend
166
166
- MONGODB_URI=mongodb://mongo-test:27017/test_db
@@ -283,4 +283,4 @@ networks:
283
283
# - --force-recreate for clean state
284
284
# - Volume cleanup between test runs
285
285
# - 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