mirror of
https://github.com/katanemo/plano.git
synced 2026-05-07 23:02:43 +02:00
21 lines
436 B
YAML
21 lines
436 B
YAML
|
|
services:
|
||
|
|
api_server:
|
||
|
|
build:
|
||
|
|
context: .
|
||
|
|
dockerfile: Dockerfile
|
||
|
|
ports:
|
||
|
|
- "18083:80"
|
||
|
|
healthcheck:
|
||
|
|
test: ["CMD", "curl" ,"http://localhost:80/healthz"]
|
||
|
|
interval: 5s
|
||
|
|
retries: 20
|
||
|
|
|
||
|
|
chatbot_ui:
|
||
|
|
build:
|
||
|
|
context: ../../chatbot_ui
|
||
|
|
dockerfile: Dockerfile
|
||
|
|
ports:
|
||
|
|
- "18090:8080"
|
||
|
|
environment:
|
||
|
|
- CHAT_COMPLETION_ENDPOINT=http://host.docker.internal:10000/v1
|