-
Notifications
You must be signed in to change notification settings - Fork 553
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
App Suggestion: Qdrant #1090
Comments
Just gave it a small update, so you can add the API_KEY as a env variable. captainVersion: 4
services:
'$$cap_appname':
caproverExtra:
dockerfileLines:
- FROM qdrant/qdrant
- WORKDIR /qdrant
- EXPOSE 6333
- CMD ["./qdrant"]
containerHttpPort: '6333'
volumes:
- '$$cap_appname:/qdrant'
environment:
- QDRANT__SERVICE__API_KEY: "$$cap_qdrant_api_key"
caproverOneClickApp:
variables:
- id: $$cap_qdrant_api_key
label: Qdrant API Key
defaultValue: "your-api-key"
description: API Key to secure the Qdrant API & dashboard
validRegex: /.{1,}/
instructions:
start: |-
Qdrant is an Open-Source Vector Database and Vector Search Engine written in Rust:
- Easy to Use API
- Fast and Accurate
- Filterable
- Distributed
end: |-
Qdrant has been successfully deployed!
- You can access the Qdrant dashboard at `http://url:6333`
- Use the API Key you provided to secure the API & dashboard
displayName: Qdrant
isOfficial: true
description: |-
Qdrant is an Open-Source Vector Database and Vector Search Engine written in Rust:
- Easy to Use API
- Fast and Accurate
- Filterable
- Distributed
documentation: See https://qdrant.tech/ |
Feel free to open a pull request if it's working! |
Will do! 😄 Just have to change a bit, so you can define a few more environment variables. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please tell us what app you'd like to see on CapRover as a one-click app.
Would like to use Qdrant, which is a open-source vector database written in Rust.
Do you know if there is any official Docker image for the app?
Yes, they have a official docker image.
https://hub.docker.com/r/qdrant/qdrant/tags
https://qdrant.tech/documentation/quick-start/
https://github.com/qdrant/qdrant
The text was updated successfully, but these errors were encountered: