27 lines
608 B
YAML
27 lines
608 B
YAML
services:
|
|
qdrant:
|
|
image: qdrant/qdrant:latest
|
|
container_name: qdrant_scientific
|
|
ports:
|
|
- "14002:6333" # REST API & Dashboard
|
|
- "6334:6334" # gRPC (For high-speed ingestion)
|
|
volumes:
|
|
- /mnt/pve/unas/services/qdrant:/qdrant/storage
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus: "1.0"
|
|
memory: 2G
|
|
reservations:
|
|
cpus: "0.5"
|
|
memory: 1G
|
|
environment:
|
|
- QDRANT__SERVICE__ENABLE_CORS=true
|
|
healthcheck:
|
|
disable: true
|
|
restart: unless-stopped
|
|
networks:
|
|
default:
|
|
external: true
|
|
name: shared_backend
|