chore: change default ports to non-standard ones (9472, 9470, 9471)

This commit is contained in:
2026-05-06 23:23:29 +03:00
parent be370fb76b
commit 9b7ed1fca8
29 changed files with 166 additions and 166 deletions
+5 -5
View File
@@ -4,17 +4,17 @@ services:
build: .
ports:
- "9000:9000"
- "8080:8080"
- "8081:8081"
- "9470:9470"
- "9471:9471"
volumes:
- baradb_data:/data
environment:
- BARADB_PORT=9000
- BARADB_DATA_DIR=/data
- BARADB_HTTP_PORT=8080
- BARADB_WS_PORT=8081
- BARADB_HTTP_PORT=9470
- BARADB_WS_PORT=9471
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://localhost:8080/health"]
test: ["CMD", "wget", "-q", "--spider", "http://localhost:9470/health"]
interval: 10s
timeout: 5s
retries: 3