mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2026-01-19 14:26:17 +00:00
Added surfsense and ollama-openwebui
This commit is contained in:
23
ollama-openwebui/compose.yml
Normal file
23
ollama-openwebui/compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user