Add open-webui draft

This commit is contained in:
Tibo De Peuter 2024-03-20 21:35:30 +01:00
parent 854e6099a2
commit f0ba3c9563

View file

@ -0,0 +1,24 @@
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'