From bce179207e4ba354e4282d836e450a47ace6d040 Mon Sep 17 00:00:00 2001 From: Obada Haddad Date: Fri, 8 Aug 2025 12:05:03 +0200 Subject: [PATCH] Fixed MC image version and bumped MinIO version --- docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 83762f6c7..2d1c05001 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -53,7 +53,7 @@ services: # Minio local storage helper #----------------------------------------------- minio: - image: minio/minio:RELEASE.2020-10-03T02-19-42Z + image: minio/minio:RELEASE.2025-04-22T22-12-26Z command: server /export volumes: - ./var/minio:/export @@ -62,11 +62,11 @@ services: - $MINIO_PORT:9000 env_file: .env healthcheck: - test: ["CMD", "nc", "-z", "minio", "9000"] + test: ["CMD", "curl", "-I", "http://minio:9000/minio/health/live"] interval: 5s retries: 5 createbuckets: - image: minio/mc + image: minio/mc:RELEASE.2025-07-21T05-28-08Z depends_on: minio: condition: service_healthy