runtime: sync router/gateway/config policy and clan role registry

This commit is contained in:
Apple
2026-02-19 00:14:06 -08:00
parent 675b25953b
commit dfc0ef1ceb
35 changed files with 6141 additions and 498 deletions

View File

@@ -8,12 +8,13 @@ services:
dockerfile: Dockerfile
container_name: dagi-router-node3
ports:
- "9102:9102"
- "9102:8000"
environment:
- NATS_URL=nats://144.76.224.179:4222
- ROUTER_CONFIG_PATH=/app/router_config.yaml
- LOG_LEVEL=info
- NODE_ID=node-3-threadripper-rtx3090
- COMFY_AGENT_URL=http://comfy-agent:8880
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
@@ -23,7 +24,7 @@ services:
- dagi-network
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9102/health"]
test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8000/health')"]
interval: 30s
timeout: 10s
retries: 3
@@ -66,6 +67,8 @@ services:
build:
context: ./services/comfy-agent
dockerfile: Dockerfile
args:
- BASE_IMAGE=microdao-daarion-comfy-agent:latest
container_name: comfy-agent-node3
ports:
- "8880:8880"
@@ -78,6 +81,21 @@ services:
- NATS_SUBJECT_VIDEO=comfy.request.video
- STORAGE_PATH=/data/comfy-results
- PUBLIC_BASE_URL=http://212.8.58.133:8880/files
- S3_ENDPOINT=144.76.224.179:9000
- S3_BUCKET=comfy-results
- S3_ACCESS_KEY=minioadmin
- S3_SECRET_KEY=minioadmin
- S3_SECURE=false
- S3_URL_TTL_S=900
- S3_PREFIX=node3
- LTX_CKPT_NAME=ltx-2-19b-distilled-fp8.safetensors
- LTX_TEXT_ENCODER=ltx2_gemma3_part1_spiece.safetensors
- LTX_DEVICE=default
- LTX_SAMPLER=euler
- LTX_MAX_SHIFT=2.05
- LTX_BASE_SHIFT=0.95
- LTX_TERMINAL=0.1
- LTX_STRETCH=true
- MAX_CONCURRENCY=1
volumes:
- comfy-results:/data/comfy-results
@@ -88,7 +106,7 @@ services:
extra_hosts:
- "host.docker.internal:host-gateway"
healthcheck:
test: ["CMD-SHELL", "wget -qO- http://localhost:8880/healthz || exit 1"]
test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8880/healthz')"]
interval: 30s
timeout: 10s
retries: 3