Files
KVM-privacy/docker-compose.yml
T
qiuruiandClaude Opus 4.6 b15f1592fd fix: deb install issues found during deployment testing
- kvm-npu: remove hard Depends on librknnrt (not deb-managed)
- kvm-privacy: add surnames.txt to configs, create symlinks in
  postinst so info-privacy-rs finds configs/ relative path
- build-debs.sh: copy surnames.txt alongside pii_rules.yaml
- docker-compose.yml: add no_proxy for host.docker.internal
  (prevents httpx routing local traffic through proxy)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-07 05:12:00 +00:00

24 lines
842 B
YAML

services:
workflow-dashboard:
build:
context: ./tools/workflow-dashboard
ports:
- "9099:9099"
volumes:
- ./tools/workflow-dashboard/testdata/results:/app/testdata/results
environment:
- RESULTS_DIR=testdata/results
- KVM_URL=http://host.docker.internal:8080
- KVM_JWT_TOKEN=${KVM_JWT_TOKEN:-}
- PRIVACY_RS_URL=http://host.docker.internal:8001
- AGENT_URL=http://host.docker.internal:8890
- NPU_DAEMON_URL=http://host.docker.internal:8004
- RKLLM_URL=http://host.docker.internal:8891
- LLM_API_KEY=${LLM_API_KEY:-}
- LLM_MODEL=${LLM_MODEL:-gpt-4o}
- no_proxy=host.docker.internal,localhost,127.0.0.1
- NO_PROXY=host.docker.internal,localhost,127.0.0.1
extra_hosts:
- "host.docker.internal:host-gateway"
restart: unless-stopped