SyedZaid-Bin-Haris commited on
Commit
f7488b4
·
verified ·
1 Parent(s): 7c0f525

Create start-qdrant.sh

Browse files
Files changed (1) hide show
  1. start-qdrant.sh +10 -0
start-qdrant.sh ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+
3
+ # Pull the Qdrant image
4
+ docker pull qdrant/qdrant
5
+
6
+ # Create storage directory if it doesn't exist
7
+ mkdir -p /qdrant_storage
8
+
9
+ # Run the Qdrant container
10
+ docker run -p 6333:6333 -p 6334:6334 -v /qdrant_storage:/qdrant/storage:z qdrant/qdrant