From 689b5d00a3daacba54de6815cc5326e1386e5f34 Mon Sep 17 00:00:00 2001 From: Jansherameer12 Date: Sat, 14 Mar 2026 18:38:55 -0700 Subject: [PATCH] fix: correct docker compose healthcheck example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d2f226a..c2d9cc6 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ services: - minio-data:/data command: server /data --console-address ":9001" healthcheck: - test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"] + test: ["CMD-SHELL", "echo > /dev/tcp/127.0.0.1/9000 && exit 0 || exit 1"] interval: 30s timeout: 20s retries: 3