mirror of
https://github.com/katanemo/plano.git
synced 2026-06-17 15:25:17 +02:00
Complete rebrand from "Arch"/"archgw" to "Plano" including: - Config files: arch_config_schema.yaml, workflow, demo configs - Environment variables: ARCH_CONFIG_* → PLANO_CONFIG_* - Python CLI: variables, functions, file paths, docker mounts - Rust crates: config paths, log messages, metadata keys - Docker/build: Dockerfile, supervisord, .dockerignore, .gitignore - Docker Compose: volume mounts and env vars across all demos/tests - GitHub workflows: job/step names - Shell scripts: log messages - Demos: Python code, READMEs, VS Code configs, Grafana dashboard - Docs: RST includes, code comments, config references - Package metadata: package.json, pyproject.toml, uv.lock External URLs (docs.archgw.com, github.com/katanemo/archgw) left as-is. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
46 lines
1 KiB
YAML
46 lines
1 KiB
YAML
services:
|
|
weather_forecast_service:
|
|
build:
|
|
context: ./
|
|
environment:
|
|
- OLTP_HOST=http://otel-collector:4317
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
ports:
|
|
- "18083:80"
|
|
|
|
chatbot_ui:
|
|
build:
|
|
context: ../../shared/chatbot_ui
|
|
ports:
|
|
- "18080:8080"
|
|
environment:
|
|
# this is only because we are running the sample app in the same docker container environment as archgw
|
|
- CHAT_COMPLETION_ENDPOINT=http://host.docker.internal:10000/v1
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
volumes:
|
|
- ./config.yaml:/app/plano_config.yaml
|
|
|
|
otel-collector:
|
|
build:
|
|
context: ../../shared/logfire/
|
|
ports:
|
|
- "4317:4317"
|
|
- "4318:4318"
|
|
volumes:
|
|
- ../../shared/logfire/otel-collector-config.yaml:/etc/otel-collector-config.yaml
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- LOGFIRE_API_KEY
|
|
|
|
prometheus:
|
|
build:
|
|
context: ../../shared/prometheus
|
|
|
|
grafana:
|
|
build:
|
|
context: ../../shared/grafana
|
|
ports:
|
|
- "3000:3000"
|