-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
41 lines (40 loc) · 1.1 KB
/
docker-compose.yaml
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
35
36
37
38
39
40
41
services:
open-webui:
container_name: "open-webui"
image: "ghcr.io/open-webui/open-webui:main"
ports:
- "3000:8080/tcp"
environment:
- "OPENAI_API_BASE_URL=http://${HOST_INTERNAL:-host.docker.internal}:9099"
- "OPENAI_API_KEY=0p3n-w3bu!"
- "OLLAMA_BASE_URL=http://${HOST_INTERNAL:-host.docker.internal}:11434"
- "VECTOR_STORE_URL=http://${HOST_INTERNAL:-host.docker.internal}:6333"
restart: "unless-stopped"
volumes:
- "open-webui:/app/backend/data"
pipelines:
container_name: "pipelines"
image: "ghcr.io/open-webui/pipelines:main"
depends_on:
- open-webui
ports:
- "9099:9099/tcp"
environment:
- "PIPELINES_REQUIREMENTS_PATH=pipelines/aireview/requirements.txt"
- "COLUMNS=160"
stdin_open: true
tty: true
volumes:
- "./data:/app/data"
- "./pipelines:/app/pipelines"
qdrant:
container_name: "qdrant"
image: "qdrant/qdrant"
ports:
- "6333:6333/tcp"
- "6334:6334/tcp"
volumes:
- "qdrant_storage:/qdrant/storage:z"
volumes:
open-webui: {}
qdrant_storage: {}