mirror of
https://gitcode.com/ageerle/ruoyi-ai.git
synced 2026-09-13 16:34:57 +00:00
21 lines
536 B
YAML
21 lines
536 B
YAML
---
|
|
services:
|
|
qdrant:
|
|
container_name: ruoyi-rag-qdrant
|
|
image: qdrant/qdrant:v1.17.0
|
|
ports:
|
|
- 6333:6333
|
|
- 6334:6334
|
|
volumes:
|
|
- qdrant_data:/qdrant/storage
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "bash -c 'exec 3<>/dev/tcp/127.0.0.1/6333 && printf \"GET /healthz HTTP/1.1\\r\\nHost: localhost\\r\\nConnection: close\\r\\n\\r\\n\" >&3 && grep -q \"200 OK\" <&3'"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 12
|
|
start_period: 10s
|
|
restart: unless-stopped
|
|
volumes:
|
|
qdrant_data:
|
|
...
|