fix: use external proxy network in compose configs

This commit is contained in:
2026-02-14 16:15:21 +01:00
parent 198fd3905b
commit e22a8d37e4
2 changed files with 24 additions and 6 deletions

View File

@@ -24,8 +24,16 @@ services:
cap_drop:
- ALL
user: "1000:1000"
networks:
- proxy
healthcheck:
test: ["CMD", "python", "-c", "import httpx; httpx.get('http://127.0.0.1:8080/health', timeout=5)"]
test:
[
"CMD",
"python",
"-c",
"import httpx; httpx.get('http://127.0.0.1:8080/health', timeout=5)",
]
interval: 30s
timeout: 10s
retries: 3
@@ -34,3 +42,7 @@ services:
volumes:
aegis-mcp-logs:
driver: local
networks:
proxy:
external: true