Manifest for Qdrant version
Self Checks
- [X] I have searched for existing issues search for existing issues, including closed ones.
- [X] I confirm that I am using English to file this report (我已阅读并同意 Language Policy).
Dify version
0.5.5
Cloud or Self Hosted
Self Hosted (Source)
Steps to reproduce
Local source code deployment using Qdrant, docker.compose.middleware.yaml on line 59: image: qdrant/qdrant:1.7.3 should be image: qdrant/qdrant:v1.7.3
✔️ Expected Behavior
No response
❌ Actual Behavior
Error response from daemon: manifest for qdrant/qdrant:1.7.3 not found: manifest unknown: manifest unknown
🤖
Hey there @AndyMik90! 😊 Back at it again with the tech mysteries, I see. Let's crack this one together!
You're correct, the error message you're seeing is due to the image specification in line 59 of the docker.compose.middleware.yaml file. The image tag "1.7.3" does not exist in the Docker Hub repository for Qdrant.
You should change it to "qdrant/qdrant:v1.7.3" if that is a valid and existing tag in the Docker Hub repository for Qdrant.
The corrected part of the docker-compose file should look like this:
# Qdrant vector store.
# uncomment to use qdrant as vector store.
# (if uncommented, you need to comment out the weaviate service above,
# and set VECTOR_STORE to qdrant in the api & worker service.)
qdrant:
image: qdrant/qdrant:v1.7.3
restart: always
volumes:
- ./volumes/qdrant:/qdrant/storage
environment:
QDRANT__API_KEY: 'difyai123456'
ports:
- "6333:6333"
Please make sure to uncomment the Qdrant service and comment out the Weaviate service if you want to use Qdrant as the vector store. Also, set VECTOR_STORE to qdrant in the api & worker service.
As for the correct version of Qdrant that is compatible with Dify v0.5.5, I wasn't able to find that information in the repository. It's possible that the information is available elsewhere or I may have missed it. If you have any additional information or context that could help me find a more accurate answer, please let me know.
Sources
About Dosu
This response is meant to be useful and save you time. It is not meant to be a precise solution, but rather a starting point for your own research.
Help me be more useful! Please leave a 👍 if this is helpful and 👎 if it is irrelevant.
If you want to continue the conversation, start your reply with @dosu-bot.
@JohnJyong pls take a look.
we are using langgenius/qdrant:v1.7.3 , this image is built by outself. @AndyMik90