2024-10-06 23:10:13 -07:00
|
|
|
services:
|
2025-12-23 18:37:58 -08:00
|
|
|
plano:
|
|
|
|
|
image: katanemo/plano:latest
|
2024-10-06 23:10:13 -07:00
|
|
|
ports:
|
|
|
|
|
- "10000:10000"
|
2024-11-07 22:11:00 -06:00
|
|
|
- "10001:10001"
|
2024-10-08 16:24:08 -07:00
|
|
|
- "11000:11000"
|
2024-10-09 15:47:32 -07:00
|
|
|
- "12000:12000"
|
2024-10-06 23:10:13 -07:00
|
|
|
- "19901:9901"
|
|
|
|
|
volumes:
|
2025-02-07 18:45:42 -08:00
|
|
|
- ${ARCH_CONFIG_FILE:-../demos/samples_python/weather_forecast/arch_config.yaml}:/app/arch_config.yaml
|
2024-10-06 23:10:13 -07:00
|
|
|
- /etc/ssl/cert.pem:/etc/ssl/cert.pem
|
2024-11-15 10:44:01 -08:00
|
|
|
- ./envoy.template.yaml:/app/envoy.template.yaml
|
|
|
|
|
- ./arch_config_schema.yaml:/app/arch_config_schema.yaml
|
2025-12-25 14:55:29 -08:00
|
|
|
- ../cli/planoai/config_generator.py:/app/planoai/config_generator.py
|
2024-11-12 10:35:14 -08:00
|
|
|
- ../crates/target/wasm32-wasip1/release/llm_gateway.wasm:/etc/envoy/proxy-wasm-plugins/llm_gateway.wasm
|
|
|
|
|
- ../crates/target/wasm32-wasip1/release/prompt_gateway.wasm:/etc/envoy/proxy-wasm-plugins/prompt_gateway.wasm
|
2024-10-28 20:05:06 -04:00
|
|
|
- ~/archgw_logs:/var/log/
|
|
|
|
|
extra_hosts:
|
|
|
|
|
- "host.docker.internal:host-gateway"
|
|
|
|
|
environment:
|
|
|
|
|
- OPENAI_API_KEY=${OPENAI_API_KEY:?error}
|
|
|
|
|
- MISTRAL_API_KEY=${MISTRAL_API_KEY:?error}
|
2026-02-09 13:33:27 -08:00
|
|
|
- OTEL_TRACING_GRPC_ENDPOINT=http://host.docker.internal:4317
|