services:
qdrant:
image: qdrant/qdrant:latest
restart: always
ports:
- "6333:6333" # REST API
- "6334:6334" # GRPC API
volumes:
- qdrant_storage:/qdrant/storage
environment:
- QDRANT_ALLOW_RECOVERY=true
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:6333/healthz"]
interval: 30s
timeout: 10s
retries: 3
volumes:
qdrant_storage: