20 lines
415 B
YAML
20 lines
415 B
YAML
services:
|
|
openwebui:
|
|
image: ghcr.io/open-webui/open-webui:ollama
|
|
container_name: open-webui
|
|
restart: unless-stopped
|
|
env_file: .env
|
|
networks:
|
|
- proxy
|
|
volumes:
|
|
- "${DATA_MNT_OLLAMA}:/root/.ollama"
|
|
- "${DATA_MNT_OPENWEBUI}:/app/backend/data"
|
|
ports:
|
|
- "${OPENWEBUI_PORT}:8080"
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|