mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2026-01-19 06:16:18 +00:00
24 lines
499 B
YAML
24 lines
499 B
YAML
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
|