mirror of
https://github.com/netbirdio/netbird.git
synced 2026-09-12 17:59:06 +02:00
[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.
This commit is contained in:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user