feat: working Qdrant template (#91)
Some checks are pending
Deploy to Cloudflare Pages (Production) / Publish to Cloudflare Pages (push) Waiting to run
Validate Blueprints Structure and Meta / validate (push) Waiting to run

* feat: working Qdrant template

* Fix: config

* fix: generate domain once
This commit is contained in:
Arnab Mondal
2025-04-26 12:57:47 +05:30
committed by GitHub
parent b23709fc92
commit 9a6c191197
4 changed files with 73 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
services:
qdrant:
image: "qdrant/qdrant:latest"
environment:
- SERVICE_FQDN_QDRANT_6333
- QDRANT__SERVICE__API_KEY=${QDRANT_API_KEY}
expose:
- "6333"
volumes:
- "qdrant_data:/qdrant/storage"
healthcheck:
test:
- CMD-SHELL
- bash -c ':> /dev/tcp/127.0.0.1/6333' || exit 1
interval: 5s
timeout: 5s
retries: 3
volumes:
qdrant_data: {}