We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6760a2d commit 7cb66edCopy full SHA for 7cb66ed
1 file changed
experiments/qdrant/docker-compose.yml
@@ -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