BSEJ-AI-OPENWEBUI/docker-compose.yml-final

21 lines
443 B
Plaintext

services:
open-webui:
image: ghcr.io/open-webui/open-webui:main
ports:
- "3000:8080"
extra_hosts:
- host.docker.internal:host-gateway
volumes:
- open-webui:/app/backend/data
restart: always
watchtower:
image: containrrr/watchtower
volumes:
- /var/run/docker.sock:/var/run/docker.sock
command: --interval 30 open-webui
depends_on:
- open-webui
volumes:
open-webui: