Add open-webui draft
This commit is contained in:
parent
854e6099a2
commit
f0ba3c9563
1 changed files with 24 additions and 0 deletions
24
open-webui/docker-compose.yaml
Normal file
24
open-webui/docker-compose.yaml
Normal 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'
|
||||||
|
|
||||||
Reference in a new issue