22 lines
587 B
YAML
22 lines
587 B
YAML
services:
|
|
webui:
|
|
image: ghcr.io/open-webui/open-webui:main
|
|
container_name: open-webui
|
|
ports:
|
|
- "3855:8080"
|
|
environment:
|
|
- OLLAMA_BASE_URL=http://ollama:11434
|
|
volumes:
|
|
- /srv/docker/ollama/webui:/app/data
|
|
networks:
|
|
- ollama
|
|
#Can comment out if not using Flame Dashboard
|
|
labels:
|
|
- flame.type=application # "app" works too
|
|
- flame.name=Webui
|
|
- flame.url=http://webui.homelab.internal #Adjust to your domain or IP
|
|
- flame.icon=chat-processing
|
|
restart: unless-stopped
|
|
networks:
|
|
ollama:
|
|
external: true |