[mod] ollama add open-webui
This commit is contained in:
parent
4639e5473e
commit
4fa742953e
2 changed files with 32 additions and 9 deletions
|
@ -1,12 +1,34 @@
|
|||
services:
|
||||
ollama:
|
||||
build: .
|
||||
container_name: ollama
|
||||
image: ollama/ollama
|
||||
healthcheck:
|
||||
test: ollama --version || exit 1
|
||||
interval: 10s
|
||||
ports:
|
||||
- "11434:11434"
|
||||
volumes:
|
||||
- ./ollama:/root/.ollama
|
||||
- ollama:/root/.ollama
|
||||
container_name: ollama
|
||||
pull_policy: always
|
||||
tty: true
|
||||
restart: unless-stopped
|
||||
image: ollama/ollama:${OLLAMA_DOCKER_TAG-latest}
|
||||
|
||||
open-webui:
|
||||
build:
|
||||
context: .
|
||||
args:
|
||||
OLLAMA_BASE_URL: '/ollama'
|
||||
dockerfile: Dockerfile
|
||||
image: ghcr.io/open-webui/open-webui:${WEBUI_DOCKER_TAG-main}
|
||||
container_name: open-webui
|
||||
volumes:
|
||||
- open-webui:/app/backend/data
|
||||
depends_on:
|
||||
- ollama
|
||||
ports:
|
||||
- ${OPEN_WEBUI_PORT-3001}:8080
|
||||
environment:
|
||||
- 'OLLAMA_BASE_URL=http://ollama:11434'
|
||||
- 'WEBUI_SECRET_KEY='
|
||||
extra_hosts:
|
||||
- host.docker.internal:host-gateway
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
ollama: {}
|
||||
open-webui: {}
|
|
@ -0,0 +1 @@
|
|||
https://dev.to/ajeetraina/how-to-setup-open-webui-with-ollama-and-docker-desktop-24f0
|
Loading…
Add table
Reference in a new issue