theocorp_docker_compose/open-web-ui/docker-compose.yml
2025-03-02 23:39:09 +00:00

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: {}