ontology
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
IMAGE_VERSION=qdrant/qdrant:v1.16.3
|
||||
SPEC=ontocast
|
||||
CONTAINER_NAME="${SPEC}.qdrant"
|
||||
QDRANT_HTTP_PORT=6333
|
||||
QDRANT_GRPC_PORT=6334
|
||||
QDRANT_API_KEY="abc123-qwe"
|
||||
QDRANT_LOG_LEVEL=INFO
|
||||
@@ -0,0 +1,18 @@
|
||||
services:
|
||||
qdrant:
|
||||
image: ${IMAGE_VERSION}
|
||||
restart: "no"
|
||||
profiles: ["${CONTAINER_NAME}"]
|
||||
ports:
|
||||
- "${QDRANT_HTTP_PORT}:6333"
|
||||
- "${QDRANT_GRPC_PORT}:6334"
|
||||
container_name: ${CONTAINER_NAME}
|
||||
volumes:
|
||||
- qdrant_data:/qdrant/storage
|
||||
environment:
|
||||
- QDRANT__SERVICE__API_KEY=${QDRANT_API_KEY}
|
||||
- QDRANT__LOG_LEVEL=${QDRANT_LOG_LEVEL}
|
||||
|
||||
volumes:
|
||||
qdrant_data:
|
||||
driver: local
|
||||
Reference in New Issue
Block a user