17 lines
402 B
YAML
17 lines
402 B
YAML
services:
|
|
open-webui:
|
|
image: ghcr.io/open-webui/open-webui:${WEBUI_DOCKER_TAG-main}
|
|
container_name: open-webui
|
|
volumes:
|
|
- open-webui:/app/backend/data
|
|
ports:
|
|
- 1019:8080
|
|
environment:
|
|
- 'OLLAMA_BASE_URL=http://owl:11434'
|
|
- 'WEBUI_SECRET_KEY='
|
|
extra_hosts:
|
|
- host.docker.internal:host-gateway
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
open-webui: {} |