-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #78 from ic4l4s9c/feat/qdrant
feat: qdrant service
- Loading branch information
Showing
4 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,3 +107,6 @@ dist/ | |
# Open WebUI Pipelines | ||
pipelines/ | ||
!pipelines/override.env | ||
|
||
# Qdrant | ||
qdrant/storage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
services: | ||
qdrant: | ||
image: qdrant/qdrant:${HARBOR_QDRANT_VERSION} | ||
env_file: | ||
- ./.env | ||
- ./qdrant/override.env | ||
container_name: ${HARBOR_CONTAINER_PREFIX}.qdrant | ||
volumes: | ||
- ./qdrant/storage:/qdrant/storage | ||
entrypoint: ["/qdrant/entrypoint.sh"] | ||
ports: | ||
- ${HARBOR_QDRANT_HOST_PORT}:6333 | ||
- ${HARBOR_QDRANT_HOST_GRPC_PORT}:6334 | ||
environment: | ||
- QDRANT__SERVICE__API_KEY=${HARBOR_QDRANT_API_KEY} | ||
- QDRANT__SERVICE__READ_ONLY_API_KEY=${HARBOR_QDRANT_READ_ONLY_API_KEY} | ||
- QDRANT__SERVICE__JWT_RBAC=${HARBOR_QDRANT_JWT_RBAC} | ||
- QDRANT__TELEMETRY_DISABLED=${HARBOR_QDRANT_DISABLE_TELEMETRY} | ||
- QDRANT__LOG_LEVEL=${HARBOR_QDRANT_LOG_LEVEL} | ||
healthcheck: | ||
test: ["CMD", "bash", "-c", ":> /dev/tcp/127.0.0.1/6333"] | ||
interval: 1s | ||
timeout: 3s | ||
retries: 10 | ||
start_period: 20s | ||
networks: | ||
- harbor-network |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# This file can be used for additional environment variables | ||
# specifically for the "qdrant" service and CLI. | ||
# You can also use the "harbor env" command to set these variables. |