File size: 430 Bytes
dd5da85 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | services:
qdrant:
image: qdrant/qdrant:v1.18.0
restart: unless-stopped
ports:
- "6333:6333" # REST
- "6334:6334" # gRPC
volumes:
- ./qdrant_storage:/qdrant/storage
environment:
# uncomment to protect the server (then pass --api-key to load_all.py
# and api_key=... in every client):
# QDRANT__SERVICE__API_KEY: change-me
QDRANT__STORAGE__ON_DISK_PAYLOAD: "true"
|