-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (40 loc) · 838 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
44 lines (40 loc) · 838 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
services:
qdrant:
image: qdrant/qdrant:latest
container_name: thinklm-qdrant
restart: unless-stopped
volumes:
- qdrant_storage:/qdrant/storage
networks:
- thinklm-net
environment:
- QDRANT__SERVICE__HTTP_PORT=6333
- QDRANT__SERVICE__GRPC_PORT=6334
backend:
build:
context: ./server
dockerfile: Dockerfile
container_name: thinklm-backend
restart: unless-stopped
env_file:
- ./server/.env
depends_on:
- qdrant
networks:
- thinklm-net
frontend:
build:
context: ./client
dockerfile: Dockerfile
container_name: thinklm-frontend
restart: unless-stopped
depends_on:
- backend
networks:
- thinklm-net
volumes:
qdrant_storage:
driver: local
networks:
thinklm-net:
external: true