12 lines
320 B
YAML
12 lines
320 B
YAML
services:
|
|
open-webui:
|
|
image: ghcr.io/open-webui/open-webui:main
|
|
container_name: open-webui
|
|
ports:
|
|
- "3000:8080"
|
|
volumes:
|
|
- ./data:/app/backend/data
|
|
environment:
|
|
- "OLLAMA_BASE_URL=http://192.168.6.254:11434"
|
|
restart: unless-stopped
|