add Git stuff

This commit is contained in:
Sönke Domröse
2025-04-09 07:09:53 -05:00
parent 0bf105f83e
commit e0ae8f2bed
23 changed files with 820 additions and 0 deletions

21
ollama/docker-compose.yml Normal file
View File

@@ -0,0 +1,21 @@
services:
ollama:
restart: always
image: ollama/ollama
container_name: ollama
ports:
- 11434:11434
volumes:
- /home/soenke/docker-data/ollama/ollama:/root/.ollama
open-webui:
image: "ghcr.io/open-webui/open-webui:main"
restart: always
container_name: open-webui
volumes:
- /home/soenke/docker-data/ollama/open-webui:/app/backend/data
extra_hosts:
- "host.docker.internal:host-gateway"
ports:
- 1180:8080