forked from llmware-ai/llmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-qdrant.yaml
More file actions
42 lines (39 loc) · 849 Bytes
/
docker-compose-qdrant.yaml
File metadata and controls
42 lines (39 loc) · 849 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
39
40
41
42
services:
mongodb:
container_name: mongodb
image: mongo:5.0.10
restart: always
# To secure MongoDB, uncomment and set the following values
# environment:
# - MONGO_INITDB_DATABASE=admin
# - MONGO_INITDB_ROOT_USERNAME=admin
# - MONGO_INITDB_ROOT_PASSWORD=changeme
volumes:
- llmware-mongodb:/data/db
ports:
- '27017:27017'
qdrant:
image: qdrant/qdrant:latest
restart: always
container_name: qdrant
ports:
- 6333:6333
- 6334:6334
expose:
- 6333
- 6334
- 6335
configs:
- source: qdrant_config
target: /qdrant/config/production.yaml
volumes:
- qdrant_data:/qdrant_data
volumes:
llmware-mongodb:
driver: local
qdrant_data:
driver: local
configs:
qdrant_config:
content: |
log_level: INFO