Skip to content

erwaen/GradRag-LLM

Repository files navigation

Qdrant + Docker Setup with Snapshot Restore (Linux)

Instructions for running Qdrant using Docker and restoring a collection from a snapshot.


Running Qdrant with Docker

1. Pull the Qdrant Docker image

docker pull qdrant/qdrant

Run the container

docker run -d \
  --name qdrant \
  -p 6333:6333 \
  -v $(pwd)/qdrant_storage:/qdrant/storage \
  qdrant/qdrant
  • -p exposes the port
  • -v $(pwd)/qdrant_storage:/qdrant/storage creates a volume to persist qdrant's data

Load a collection with a snapshot

  • Open your browser and go to the url localhost:6333/dashboard
  • Head to the "Collections" section image
  • Click on "UPLOAD SNAPSHOT" and load your snapshot file image

Running Qdrant with Docker Desktop (Windows)

Instructions for running Qdrant using Docker Desktop and restoring a collection from a snapshot.


Install and run Docker Desktop

image

Click on the search bar and search for the qdrant image, then pull the desired version.

image

Head to the Images section

image

Click on the Run icon on the qdrant image and then following window pops up

image

Expand Optional Settings and customize your container according to your needs (name, port, volume for persistance, etc.)

image

Note that for the Container path you must use the same as the previous guide (/qdrant/storage).

To load the snapshot follow the same steps as in the Linux guide

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages