feat(topology): add GHC06 layout and deploy docs

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-08-11 15:02:47 +08:00
co-authored by Claude
parent cf1d26dba9
commit 26d2fcd0b1
9 changed files with 710 additions and 50 deletions
@@ -0,0 +1,21 @@
services:
topology-api:
image: topology-api:20260721-ghc06-layout
container_name: topology-api-2
restart: unless-stopped
env_file:
- .env
ports:
- "38080:8080"
healthcheck:
test:
- CMD
- python
- -c
- >-
import urllib.request;
urllib.request.urlopen('http://127.0.0.1:8080/health', timeout=3)
interval: 30s
timeout: 5s
retries: 3
start_period: 10s