multi-document-rag-with-RAGAS / docker-compose.yml
dharandhamo's picture
Add Multi-Document RAG project with Nvidia integration
f813ba1
Raw
History Blame Contribute Delete
290 Bytes
services:
qdrant:
image: qdrant/qdrant:latest
container_name: rag_qdrant
restart: unless-stopped
ports:
- "6333:6333"
- "6334:6334"
volumes:
- qdrant_storage:/qdrant/storage
environment:
- QDRANT__LOG_LEVEL=INFO
volumes:
qdrant_storage: