This repository has been archived on 2026-02-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Dorian/open-webui/docker-compose.yaml

24 lines
550 B
YAML

version: '3.2'
services:
reskinned-open-webui:
container_name: reskinned-open-webui
image: git.depeuter.dev/tdpeuter/open-webui
environment:
- OLLAMA_BASE_URL=http://192.168.0.11:11434
ports:
- '8080:8080'
volumes:
- type: volume
source: hugo-openwebui-config
target: /app/backend/data
volume:
nocopy: true
volumes:
hugo-openwebui-config:
driver_opts:
type: 'nfs'
o: 'addr=192.168.0.11,nolock,soft,rw'
device: ':/mnt/SMALL/DATA/CONFIG/OLLAMA-WEBUI'