From 973173be9ca68abcf32b4a59aa5b6dfe6351c984 Mon Sep 17 00:00:00 2001 From: Philippe Vaucher Date: Sat, 12 Sep 2026 10:39:57 +0200 Subject: [PATCH] [misc] Pull the MinIO test image from quay.io (#7516) The minio/minio repository is no longer on Docker Hub: the repo and the pinned tag both return 404 and anonymous pulls are refused, so Test_S3HandlerGetUploadURL fails on every Linux CI run with "pull access denied for minio/minio". The same release is published at quay.io/minio/minio, digest sha256:a1ea29fa28355559ef137d71fc570e508a214ec84ff8083e39bc5428980b015e, so the testcontainers request points there and keeps the pinned tag. --- upload-server/server/s3_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upload-server/server/s3_test.go b/upload-server/server/s3_test.go index a72356409..110b1b780 100644 --- a/upload-server/server/s3_test.go +++ b/upload-server/server/s3_test.go @@ -29,7 +29,7 @@ func Test_S3HandlerGetUploadURL(t *testing.T) { ctx := context.Background() c, err := testcontainers.GenericContainer(ctx, testcontainers.GenericContainerRequest{ ContainerRequest: testcontainers.ContainerRequest{ - Image: "minio/minio:RELEASE.2025-04-22T22-12-26Z", + Image: "quay.io/minio/minio:RELEASE.2025-04-22T22-12-26Z", ExposedPorts: []string{"9000/tcp"}, Env: map[string]string{ "MINIO_ROOT_USER": "minioadmin",