Skip to content

Commit a8f230b

Browse files
committed
Added qdrant
1 parent 94ee525 commit a8f230b

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

public/svgs/qdrant.png

11.4 KB
Loading

templates/compose/qdrant.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# documentation: https://qdrant.tech/documentation/
2+
# slogan: Qdrant is a vector similarity search engine that provides a production-ready service with a convenient API to store, search, and manage points (i.e. vectors) with an additional payload.
3+
# tags: ai, vector-database, semantic-search, machine-learning, bm25, embeddings, llm
4+
# logo: svgs/qdrant.png
5+
# port: 6333
6+
7+
version: "3"
8+
9+
volumes:
10+
qdrant_storage: null
11+
12+
services:
13+
qdrant:
14+
image: "qdrant/qdrant:latest"
15+
restart: always
16+
environment:
17+
- SERVICE_FQDN_QDRANT_6333
18+
- QDRANT__SERVICE__API_KEY=${SERVICE_PASSWORD_QDRANTAPIKEY}
19+
volumes:
20+
- "qdrant_storage:/qdrant/storage"
21+
healthcheck:
22+
test:
23+
- CMD-SHELL
24+
- bash -c ':> /dev/tcp/127.0.0.1/6333' || exit 1
25+
interval: 5s
26+
timeout: 5s
27+
retries: 3

0 commit comments

Comments
 (0)