auto: sync 2026-05-28

This commit is contained in:
2026-05-28 10:01:56 +02:00
parent 5d3187181d
commit 0f174ae967
14 changed files with 448 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
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