mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 00:36:34 +02:00
22 lines
593 B
YAML
22 lines
593 B
YAML
services:
|
|
archgw:
|
|
image: katanemo/archgw:latest
|
|
ports:
|
|
- "10000:10000"
|
|
- "10001:10001"
|
|
- "11000:11000"
|
|
- "12000:12000"
|
|
- "19901:9901"
|
|
volumes:
|
|
- ${ARCH_CONFIG_FILE:-../demos/function_calling/arch_config.yaml}:/config/arch_config.yaml
|
|
- /etc/ssl/cert.pem:/etc/ssl/cert.pem
|
|
- ~/archgw_logs:/var/log/
|
|
env_file:
|
|
- env.list
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:10000/healthz"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|