30 lines
659 B
YAML
30 lines
659 B
YAML
services:
|
|
# Begin LiteLLM service
|
|
# 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
|
|
|
|
# Begin open-webui
|
|
open-webui:
|
|
image: ghcr.io/open-webui/open-webui:main
|
|
ports:
|
|
- 8080:8080
|
|
environment:
|
|
OLLAMA_BASE_URL: http://ollama:11434
|
|
WEBUI_AUTH: "False"
|
|
extra_hosts:
|
|
- host.docker.internal:host-gateway
|
|
volumes:
|
|
- open-webui_data:/app/backend/data
|
|
|
|
volumes:
|
|
open-webui_data: |