2024-02-03 03:27:22 +00:00
|
|
|
services:
|
2024-02-07 00:27:03 +00:00
|
|
|
# Begin LiteLLM service
|
2024-04-04 14:16:41 +00:00
|
|
|
# litellm:
|
|
|
|
# image: ghcr.io/berriai/litellm:main-latest
|
|
|
|
# command: --config /config.yaml
|
|
|
|
# ports:
|
|
|
|
# - 8000:8000
|
|
|
|
# env_file:
|
|
|
|
# - .env
|
|
|
|
# environment:
|
|
|
|
# - HOST=0.0.0.0
|
|
|
|
# - PORT=8000
|
|
|
|
# volumes:
|
|
|
|
# - ./litellm/config.yaml:/config.yaml
|
2024-02-03 03:27:22 +00:00
|
|
|
|
2024-03-28 18:00:29 +00:00
|
|
|
# Begin open-webui
|
|
|
|
open-webui:
|
|
|
|
image: ghcr.io/open-webui/open-webui:main
|
2024-02-03 03:27:22 +00:00
|
|
|
ports:
|
2024-03-28 18:00:29 +00:00
|
|
|
- 8080:8080
|
2024-02-03 03:27:22 +00:00
|
|
|
environment:
|
2024-11-14 00:38:42 +00:00
|
|
|
OLLAMA_BASE_URL: http://host.docker.internal:11434
|
2024-11-13 04:27:20 +00:00
|
|
|
WEBUI_AUTH: "False"
|
2024-11-14 00:38:42 +00:00
|
|
|
no_proxy: localhost,127.0.0.1,docker.internal
|
|
|
|
NO_PROXY: localhost,127.0.0.1,docker.internal
|
2024-04-04 14:16:41 +00:00
|
|
|
extra_hosts:
|
|
|
|
- host.docker.internal:host-gateway
|
2024-02-03 03:27:22 +00:00
|
|
|
volumes:
|
2024-03-28 18:00:29 +00:00
|
|
|
- open-webui_data:/app/backend/data
|
2024-02-03 03:27:22 +00:00
|
|
|
|
|
|
|
volumes:
|
2024-03-28 18:00:29 +00:00
|
|
|
open-webui_data:
|