-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompose.yaml
More file actions
38 lines (37 loc) · 808 Bytes
/
compose.yaml
File metadata and controls
38 lines (37 loc) · 808 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
35
36
37
38
services:
knowledgebot:
image: ghcr.io/mgoltzsche/knowledgebot:dev
# environment:
# KLB_OPENAI_URL: http://ollama:11434
# KLB_TOPIC: Simpsons TV Show
ports:
- "8080:8080"
volumes:
- "./ui:/var/lib/knowledgebot/ui"
depends_on:
- qdrant
- ollama
#- localai
qdrant:
image: qdrant/qdrant:v1.15.4-unprivileged
ports:
- "6333:6333"
volumes:
- "qdrant-data:/qdrant/storage:z"
ollama:
image: ollama/ollama:0.12.1
ports:
- "11434:11434"
volumes:
- "ollama-data:/root/.ollama"
#localai:
# image: localai/localai:v2.29.0-vulkan
# ports:
# - "8080:8080"
# volumes:
# - 'localai-models:/build/models:z'
# privileged: true
volumes:
qdrant-data:
ollama-data:
#localai-models: