fix: Qdrant healthcheck uses bash /dev/tcp (no wget/curl in image)
This commit is contained in:
parent
7c79574a25
commit
7256fe7667
1 changed files with 1 additions and 1 deletions
|
|
@ -53,7 +53,7 @@ services:
|
||||||
networks:
|
networks:
|
||||||
- chrysopedia
|
- chrysopedia
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD-SHELL", "wget -qO- http://localhost:6333/healthz || exit 1"]
|
test: ["CMD-SHELL", "bash -c 'echo > /dev/tcp/localhost/6333'"]
|
||||||
interval: 15s
|
interval: 15s
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 5
|
retries: 5
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue