From 24e7e53dacec810bbec81071e3ea8dcdbdc0f2ab Mon Sep 17 00:00:00 2001 From: Sreesh Maheshwar Date: Fri, 11 Sep 2026 23:46:15 +0100 Subject: [PATCH] ci: pull MinIO images from Quay Docker Hub no longer serves the MinIO server and client repositories, preventing integration test containers from starting. Use the corresponding Quay images with the existing release tags. Generated-by: Codex --- dev/docker-compose.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/docker-compose.yaml b/dev/docker-compose.yaml index f086b27d5f..16c999cb9a 100644 --- a/dev/docker-compose.yaml +++ b/dev/docker-compose.yaml @@ -28,7 +28,7 @@ services: # MinIO - S3-compatible storage (shared by all tests) # ============================================================================= minio: - image: minio/minio:RELEASE.2025-05-24T17-08-30Z + image: quay.io/minio/minio:RELEASE.2025-05-24T17-08-30Z environment: - MINIO_ROOT_USER=admin - MINIO_ROOT_PASSWORD=password @@ -56,7 +56,7 @@ services: depends_on: minio: condition: service_healthy - image: minio/mc:RELEASE.2025-05-21T01-59-54Z + image: quay.io/minio/mc:RELEASE.2025-05-21T01-59-54Z environment: - AWS_ACCESS_KEY_ID=admin - AWS_SECRET_ACCESS_KEY=password