1 parent d9d7183 commit 8142925Copy full SHA for 8142925
1 file changed
pkg/blobmanager/s3/backend_test.go
@@ -345,7 +345,9 @@ func newMinioInstance(t *testing.T) *minioInstance {
345
const port = "9000/tcp"
346
347
req := testcontainers.ContainerRequest{
348
- Image: "minio/minio:RELEASE.2023-09-04T19-57-37Z",
+ // Pinned to a fixed digest to keep the test reproducible; update the digest manually to adopt new MinIO releases.
349
+ // https://quay.io/repository/minio/minio/manifest/sha256:a1a8bd4ac40ad7881a245bab97323e18f971e4d4cba2c2007ec1bedd21cbaba2
350
+ Image: "quay.io/minio/minio@sha256:a1a8bd4ac40ad7881a245bab97323e18f971e4d4cba2c2007ec1bedd21cbaba2",
351
ExposedPorts: []string{port},
352
Env: map[string]string{
353
"MINIO_ROOT_USER": "root",
0 commit comments