open-webui/docker-compose.yaml

35 lines
771 B
YAML
Raw Permalink Normal View History

2023-10-31 03:52:45 +08:00
services:
ollama:
volumes:
- ollama:/root/.ollama
container_name: ollama
pull_policy: always
tty: true
restart: unless-stopped
2024-04-06 11:48:16 +08:00
image: ollama/ollama:${OLLAMA_DOCKER_TAG-latest}
2023-10-31 03:52:45 +08:00
2024-02-17 15:30:38 +08:00
open-webui:
2023-10-31 03:52:45 +08:00
build:
context: .
args:
2024-03-07 03:44:00 +08:00
OLLAMA_BASE_URL: '/ollama'
2023-10-31 03:52:45 +08:00
dockerfile: Dockerfile
2024-04-06 11:48:16 +08:00
image: ghcr.io/open-webui/open-webui:${WEBUI_DOCKER_TAG-main}
2024-02-17 15:30:38 +08:00
container_name: open-webui
volumes:
2024-02-17 15:30:38 +08:00
- open-webui:/app/backend/data
2023-11-18 02:38:29 +08:00
depends_on:
- ollama
2023-10-31 03:52:45 +08:00
ports:
- ${OPEN_WEBUI_PORT-3000}:8080
2023-11-18 02:38:29 +08:00
environment:
2024-03-07 03:44:00 +08:00
- 'OLLAMA_BASE_URL=http://ollama:11434'
- 'WEBUI_SECRET_KEY='
extra_hosts:
2023-11-18 02:38:29 +08:00
- host.docker.internal:host-gateway
restart: unless-stopped
2023-10-31 03:52:45 +08:00
volumes:
ollama: {}
2024-02-17 15:30:38 +08:00
open-webui: {}