ops: attach vault-dash to proxy-net and document vd1 route

This commit is contained in:
Bu5hm4nn
2026-03-23 23:35:47 +01:00
parent ed6daf6d47
commit 46ce81d2d6
2 changed files with 23 additions and 2 deletions

View File

@@ -17,9 +17,22 @@ services:
CORS_ORIGINS: ${CORS_ORIGINS:-*}
ports:
- "${APP_BIND_ADDRESS:-127.0.0.1}:${APP_PORT:-8000}:8000"
networks:
- default
- proxy-net
healthcheck:
test: ["CMD", "curl", "-fsS", "http://127.0.0.1:8000/health"]
test:
[
"CMD",
"python",
"-c",
"import sys, urllib.request; urllib.request.urlopen('http://127.0.0.1:8000/health', timeout=3); sys.exit(0)",
]
interval: 30s
timeout: 5s
retries: 5
start_period: 20s
networks:
proxy-net:
external: true