24 lines
550 B
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'
|
|
|