2024-07-10 10:06:02 -07:00
|
|
|
services:
|
2024-10-01 10:02:23 -07:00
|
|
|
archgw:
|
2024-10-09 21:00:26 -07:00
|
|
|
image: katanemo/archgw:latest
|
2024-07-10 10:06:02 -07:00
|
|
|
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"
|
2024-10-03 18:21:27 -07:00
|
|
|
- "19901:9901"
|
2024-07-10 10:06:02 -07:00
|
|
|
volumes:
|
2024-11-15 10:44:01 -08:00
|
|
|
- ${ARCH_CONFIG_FILE:-../demos/weather_forecast/arch_config.yaml}:/app/arch_config.yaml
|
2024-07-19 13:14:48 -07:00
|
|
|
- /etc/ssl/cert.pem:/etc/ssl/cert.pem
|
2024-10-09 15:47:32 -07:00
|
|
|
- ~/archgw_logs:/var/log/
|
2024-10-05 10:49:47 -07:00
|
|
|
env_file:
|
2024-10-30 17:54:51 -07:00
|
|
|
- env.list
|
2024-11-15 10:44:01 -08:00
|
|
|
environment:
|
|
|
|
|
- OTEL_TRACING_HTTP_ENDPOINT=http://host.docker.internal:4318/v1/traces
|
2024-10-10 14:56:23 -07:00
|
|
|
extra_hosts:
|
|
|
|
|
- "host.docker.internal:host-gateway"
|
2024-10-30 17:54:51 -07:00
|
|
|
healthcheck:
|
|
|
|
|
test: ["CMD", "curl", "-f", "http://localhost:10000/healthz"]
|
|
|
|
|
interval: 30s
|
|
|
|
|
timeout: 10s
|
|
|
|
|
retries: 3
|