rag-system-v2 / docker-compose.yml
Sopipatil's picture
initial commit: multimodal RAG engine with guardrails and tests
db10232
Raw
History Blame Contribute Delete
324 Bytes
services:
qdrant:
image: qdrant/qdrant:latest
container_name: conversational-rag-qdrant
ports:
- "6333:6333"
- "6334:6334"
volumes:
- qdrant_storage:/qdrant/storage
environment:
QDRANT__SERVICE__HTTP_PORT: 6333
QDRANT__SERVICE__GRPC_PORT: 6334
volumes:
qdrant_storage: