Skip to content

kevmo/llmz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

LLM Zoomcamp Project

Launching Qdrant with Docker

To launch Qdrant using Docker, run the following command:

docker run -p 6333:6333 -p 6334:6334 \
    -v $(pwd)/qdrant_storage:/qdrant/storage:z \
    qdrant/qdrant

This will:

  • Start Qdrant on port 6333 (REST API) and 6334 (gRPC)
  • Mount the qdrant_storage directory for persistent storage
  • Use the official Qdrant Docker image

Verify Qdrant is Running

Once started, you can verify Qdrant is running by visiting:

Stop Qdrant

To stop the Qdrant container:

docker ps  # Find the container ID
docker stop <container_id>

About

just some dang ol research, man

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published