open-webui/docker-compose.yaml
Kaikawala Gedara Theekshana Nadun Bandara Kaikawla 6f5fcc2a50 branded with text
2025-03-31 12:18:15 +05:30

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: {}