-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
50 lines (45 loc) · 861 Bytes
/
docker-compose.yml
File metadata and controls
50 lines (45 loc) · 861 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
43
44
45
46
47
48
49
50
services:
embed-server:
build: ./embedding_server
container_name: embed-server
hostname: embed-server
ports:
- "5005:5005"
restart: unless-stopped
runtime: nvidia
deploy:
resources:
reservations:
devices:
- capabilities: [gpu]
networks:
- ragnet
qdrant:
image: qdrant/qdrant
container_name: qdrant_rag
ports:
- "6333:6333"
- "6334:6334"
restart: unless-stopped
networks:
- ragnet
volumes:
- qdrant_data:/qdrant/storage
rag-search:
build: ./core
container_name: rag-search
hostname: rag-search
tty: true
networks:
- ragnet
ports:
- "8000:8000"
restart: unless-stopped
depends_on:
- qdrant
- embed-server
networks:
ragnet:
driver: bridge
volumes:
qdrant_data: