Skip to content

Instantly share code, notes, and snippets.

@MTN-RowinAndruscavage
Created June 7, 2024 22:50
Show Gist options
  • Select an option

  • Save MTN-RowinAndruscavage/8073ad0791d911f10b7ea9f4e4a82a03 to your computer and use it in GitHub Desktop.

Select an option

Save MTN-RowinAndruscavage/8073ad0791d911f10b7ea9f4e4a82a03 to your computer and use it in GitHub Desktop.
open-webui docker compose with cloudflared container
version: '3.8'
# from https://github.com/jgarland79/ollama-webui-docker
services:
ollama:
volumes:
- 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-3000}:8080
environment:
- 'OLLAMA_BASE_URL=http://ollama:11434'
- 'WEBUI_SECRET_KEY='
extra_hosts:
- host.docker.internal:host-gateway
restart: unless-stopped
tunnel:
image: cloudflare/cloudflared:latest
restart: unless-stopped
environment:
- TUNNEL_URL=http://open-webui:8080
command: tunnel --no-autoupdate
depends_on:
- open-webui
volumes:
ollama: {}
open-webui: {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment