plano/arch/docker-compose.yaml

25 lines
685 B
YAML
Raw Normal View History

services:
archgw:
image: katanemo/archgw:latest
ports:
- "10000:10000"
2024-11-07 22:11:00 -06:00
- "10001:10001"
2024-10-09 15:47:32 -07:00
- "11000:11000"
- "12000:12000"
- "19901:9901"
volumes:
- ${ARCH_CONFIG_FILE:-../demos/weather_forecast/arch_config.yaml}:/app/arch_config.yaml
- /etc/ssl/cert.pem:/etc/ssl/cert.pem
2024-10-09 15:47:32 -07:00
- ~/archgw_logs:/var/log/
env_file:
- env.list
environment:
- OTEL_TRACING_HTTP_ENDPOINT=http://host.docker.internal:4318/v1/traces
extra_hosts:
- "host.docker.internal:host-gateway"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:10000/healthz"]
interval: 30s
timeout: 10s
retries: 3