2024-10-08 22:19:20 -07:00
|
|
|
services:
|
2025-02-07 18:45:42 -08:00
|
|
|
weather_forecast_service:
|
2024-10-08 22:19:20 -07:00
|
|
|
build:
|
|
|
|
|
context: .
|
2024-12-20 13:25:01 -08:00
|
|
|
dockerfile: Dockerfile
|
|
|
|
|
ports:
|
2025-02-07 18:45:42 -08:00
|
|
|
- "18081:8081"
|
2024-12-20 13:25:01 -08:00
|
|
|
|
|
|
|
|
chatbot_ui:
|
|
|
|
|
build:
|
2025-02-07 18:45:42 -08:00
|
|
|
context: ../../shared/chatbot_ui
|
2024-12-20 13:25:01 -08:00
|
|
|
dockerfile: Dockerfile
|
|
|
|
|
ports:
|
|
|
|
|
- "18080:8080"
|
2024-10-30 18:38:18 -07:00
|
|
|
environment:
|
|
|
|
|
- CHAT_COMPLETION_ENDPOINT=http://host.docker.internal:10000/v1
|
2024-12-20 13:25:01 -08:00
|
|
|
extra_hosts:
|
|
|
|
|
- "host.docker.internal:host-gateway"
|
2024-10-30 18:38:18 -07:00
|
|
|
volumes:
|
|
|
|
|
- ./arch_config.yaml:/app/arch_config.yaml
|