mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 16:56:24 +02:00
30 lines
543 B
YAML
30 lines
543 B
YAML
services:
|
|
|
|
|
|
open-web-ui:
|
|
image: dyrnq/open-webui:main
|
|
restart: always
|
|
ports:
|
|
- "8080:8080"
|
|
environment:
|
|
- DEFAULT_MODEL=gpt-4o-mini
|
|
- ENABLE_OPENAI_API=true
|
|
- OPENAI_API_BASE_URL=http://host.docker.internal:12000/v1
|
|
|
|
jaeger:
|
|
build:
|
|
context: ../../shared/jaeger
|
|
ports:
|
|
- "16686:16686"
|
|
- "4317:4317"
|
|
- "4318:4318"
|
|
|
|
prometheus:
|
|
build:
|
|
context: ../../shared/prometheus
|
|
|
|
grafana:
|
|
build:
|
|
context: ../../shared/grafana
|
|
ports:
|
|
- "3000:3000"
|