From 99824c858ad249493a2b53f18a376713e8b824b5 Mon Sep 17 00:00:00 2001 From: yangjie01 Date: Sun, 13 Sep 2026 12:00:13 +0800 Subject: [PATCH] [test-util] Pull the MinIO test image from quay.io The Docker Hub minio/minio repository is no longer available, so every container test that starts MinioTestContainer now fails at startup with "Status 404: pull access denied for minio/minio, repository does not exist or may require 'docker login'". MinIO's own quay.io registry still serves the same RELEASE.2022-02-07T08-17-33Z tag publicly, so qualifying the image name restores the pull without changing the version. --- .../apache/paimon/testutils/junit/DockerImageVersions.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/paimon-test-utils/src/main/java/org/apache/paimon/testutils/junit/DockerImageVersions.java b/paimon-test-utils/src/main/java/org/apache/paimon/testutils/junit/DockerImageVersions.java index 56be88d2cf62..7824a874cfce 100644 --- a/paimon-test-utils/src/main/java/org/apache/paimon/testutils/junit/DockerImageVersions.java +++ b/paimon-test-utils/src/main/java/org/apache/paimon/testutils/junit/DockerImageVersions.java @@ -24,5 +24,7 @@ */ public class DockerImageVersions { - public static final String MINIO = "minio/minio:RELEASE.2022-02-07T08-17-33Z"; + // Pulled from MinIO's own quay.io registry: the Docker Hub minio/minio repository is gone, so + // the unqualified name now fails with "pull access denied ... repository does not exist". + public static final String MINIO = "quay.io/minio/minio:RELEASE.2022-02-07T08-17-33Z"; }