ollama
All checks were successful
Update Compose File / build (push) Successful in 3m14s

This commit is contained in:
2026-04-13 22:55:04 -07:00
parent 6f35ce1a4e
commit 8a363c1628

View File

@@ -233,6 +233,32 @@ services:
- "traefik.http.routers.metube.tls=true"
- "traefik.http.services.metube.loadbalancer.server.port=8081"
ollama:
image: ollama/ollama:latest
container_name: ollama
ports:
- "11434:11434"
volumes:
- ${DATA}/ollama/ollama:/root/.ollama
restart: unless-stopped
open-webui:
image: ghcr.io/open-webui/open-webui:main
container_name: open-webui
environment:
- OLLAMA_BASE_URL=http://ollama:11434
volumes:
- ${DATA}/ollama/open-webui:/app/backend/data
depends_on:
- ollama
restart: unless-stopped
labels: # traefik
- "traefik.enable=true"
- "traefik.http.routers.open-webui.rule=Host(`ai.${DOMAIN}`)"
- "traefik.http.routers.open-webui.entrypoints=https"
- "traefik.http.routers.open-webui.tls=true"
- "traefik.http.services.open-webui.loadbalancer.server.port=8080"
picard:
container_name: picard
image: mikenye/picard:latest