-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (31 loc) · 805 Bytes
/
docker-compose.yml
File metadata and controls
34 lines (31 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
services:
# ollama:
# image: ollama/ollama:latest
# ports: [ "11434:11434" ]
# volumes:
# - ollama:/root/.ollama
# restart: unless-stopped
webui:
image: ghcr.io/open-webui/open-webui:main
ports: [ "3000:8080" ]
# depends_on: [ ollama ]
environment:
# uncomment to use containerized ollama service instead of a local one
# - OLLAMA_API_BASE=http://ollama:11434
- OLLAMA_API_BASE=http://localhost:11434
volumes:
- webui:/app/backend/data
restart: unless-stopped
cloudflared:
image: cloudflare/cloudflared:latest
depends_on:
- webui
command: tunnel --no-autoupdate run
# environment:
# - TUNNEL_TOKEN=${TUNNEL_TOKEN}
env_file:
- .env
restart: unless-stopped
volumes:
# ollama:
webui: