-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
42 lines (42 loc) · 866 Bytes
/
docker-compose.yaml
File metadata and controls
42 lines (42 loc) · 866 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
version: "2"
services:
redis:
image: docker.io/redis:7.0-alpine
networks:
- private-gpt
ports:
- 6379:6379
qdrant:
image: docker.io/qdrant/qdrant:v1.2.0
networks:
- private-gpt
ports:
- 6333:6333
volumes:
- qdrant-data:/qdrant/storage
# conversation-api:
# image: ghcr.io/clemlesne/private-gpt/conversation-api:latest
# environment:
# MS_QD_HOST: qdrant
# MS_REDIS_HOST: redis
# networks:
# - private-gpt
# ports:
# - 8081:8080
# depends_on:
# - qdrant
# volumes:
# - .env:/app/.env
# conversation-ui:
# image: ghcr.io/clemlesne/private-gpt/conversation-ui:latest
# networks:
# - private-gpt
# ports:
# - 8080:8080
# volumes:
# - /tmp
networks:
private-gpt:
driver: bridge
volumes:
qdrant-data: {}