mirror of
https://github.com/open-webui/open-webui
synced 2025-04-03 12:31:32 +00:00
35 lines
777 B
YAML
35 lines
777 B
YAML
services:
|
|
ollama:
|
|
volumes:
|
|
- ollama:/root/.ollama
|
|
container_name: ollama
|
|
pull_policy: always
|
|
tty: true
|
|
restart: unless-stopped
|
|
image: ollama/ollama:${OLLAMA_DOCKER_TAG-latest}
|
|
|
|
ceylon-ally:
|
|
build:
|
|
context: .
|
|
args:
|
|
OLLAMA_BASE_URL: '/ollama'
|
|
dockerfile: Dockerfile
|
|
image: ghcr.io/ceylon-ally/ceylon-ally:${WEBUI_DOCKER_TAG-main}
|
|
container_name: ceylon-ally
|
|
volumes:
|
|
- ceylon-ally:/app/backend/data
|
|
depends_on:
|
|
- ollama
|
|
ports:
|
|
- ${OPEN_WEBUI_PORT-3000}:8080
|
|
environment:
|
|
- 'OLLAMA_BASE_URL=http://ollama:11434'
|
|
- 'WEBUI_SECRET_KEY='
|
|
extra_hosts:
|
|
- host.docker.internal:host-gateway
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
ollama: {}
|
|
ceylon-ally: {}
|