From 3167939c62f6477017483719d3588419128b81f4 Mon Sep 17 00:00:00 2001 From: wrs <22085613+wi-r-es@users.noreply.github.com> Date: Mon, 13 Apr 2026 12:41:36 +0100 Subject: [PATCH] Update MinIO image and healthcheck command --- docker-compose.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index bfed16d2..f96f93e5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -55,7 +55,8 @@ services: timeout: 3s retries: 50 minio: - image: minio/minio:latest + image: alpine/minio:RELEASE.2025-10-15T17-29-55Z + user: "0:0" volumes: - s3data:/data ports: @@ -66,7 +67,7 @@ services: command: server /data restart: always healthcheck: - test: ["CMD", "mc", "ready", "local"] + test: ["CMD-SHELL", "wget -qO- http://localhost:9000/minio/health/live"] interval: 10s timeout: 5s retries: 3