mirror of
https://github.com/michivonah/docker.git
synced 2025-12-22 20:36:27 +01:00
21 lines
528 B
YAML
21 lines
528 B
YAML
version: "3"
|
|
services:
|
|
ollama:
|
|
image: ollama/ollama
|
|
container_name: ollama
|
|
restart: unless-stopped
|
|
ports:
|
|
- 11434:11434
|
|
volumes:
|
|
- ./ollama:/root/.ollama
|
|
|
|
open-webui:
|
|
image: ghcr.io/open-webui/open-webui:main
|
|
container_name: open-webui
|
|
restart: unless-stopped
|
|
ports:
|
|
- 3000:8080
|
|
environment:
|
|
- OLLAMA_BASE_URL=http://ollama:11434
|
|
volumes:
|
|
- ./open-webui:/app/backend/data
|