Skip to content
This repository was archived by the owner on Dec 16, 2025. It is now read-only.

Latest commit

 

History

History
21 lines (14 loc) · 519 Bytes

File metadata and controls

21 lines (14 loc) · 519 Bytes

RAGaaS

With Ollama running and the required models (mxbai-embed-large and llama3.1) are pulled, the image can be built with →

docker builld -t testrag .

Then start a qdrant container with →

docker run -p 6333:6333 -v qdrantdata:/qdrant/storage qdrant/qdrant

Lastly, run the image with →

docker run --rm -v /path/to/your/knowledgebase:/app/docs -i testrag knowledgebasedb

Code explanation in companion blog post.