Added surfsense and ollama-openwebui

This commit is contained in:
Dominik
2026-01-04 20:41:16 +01:00
parent 05e8212947
commit 652727b91c
3 changed files with 112 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
name: ollama-openwebui
services:
ollama:
image: ollama/ollama:latest
container_name: ollama
restart: unless-stopped
ports:
- "11434:11434"
volumes:
- ./ollama:/root/.ollama
openwebui:
image: ghcr.io/open-webui/open-webui:main
container_name: openwebui
restart: unless-stopped
depends_on:
- ollama
environment:
- OLLAMA_BASE_URL=http://ollama:11434
ports:
- "3000:8080"
volumes:
- ./openwebui:/app/backend/data