Skip to content

Commit 7cb66ed

Browse files
committed
qdrant vector database
1 parent 6760a2d commit 7cb66ed

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
services:
2+
qdrant:
3+
image: qdrant/qdrant:latest
4+
container_name: qdrant
5+
hostname: qdrant
6+
# ports:
7+
# - "6333:6333" # REST API
8+
# - "6334:6334" # gRPC
9+
volumes:
10+
- ../../lib/qdrant:/qdrant/storage
11+
restart: unless-stopped
12+
healthcheck:
13+
test: ["CMD-SHELL", "bash -c '</dev/tcp/localhost/6333'"]
14+
interval: 10s
15+
timeout: 10s
16+
retries: 3
17+
start_period: 20s
18+
networks:
19+
- db
20+
21+
networks:
22+
db:
23+
name: qdrant-net

0 commit comments

Comments
 (0)