Skip to content

Commit 9d466f5

Browse files
Fix minio image destination
1 parent ed735c4 commit 9d466f5

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

file-sender/src/tests.rs

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -223,11 +223,14 @@ async fn s3_filesystem(#[case] creds_ok: bool, random_seed: Seed) {
223223
let secret_key = "minio_test_secret_12345678";
224224

225225
// Bitnami image auto-starts the server with these env vars; no command needed.
226-
let mut podman = Podman::new("S3Test", "docker.io/bitnami/minio:latest")
227-
.with_port_mapping(None, 9000)
228-
.with_port_mapping(None, 9001)
229-
.with_env("MINIO_ROOT_USER", access_key)
230-
.with_env("MINIO_ROOT_PASSWORD", secret_key);
226+
let mut podman = Podman::new(
227+
"S3Test",
228+
"docker.io/bitnamilegacy/minio:2025.7.23-debian-12-r5",
229+
)
230+
.with_port_mapping(None, 9000)
231+
.with_port_mapping(None, 9001)
232+
.with_env("MINIO_ROOT_USER", access_key)
233+
.with_env("MINIO_ROOT_PASSWORD", secret_key);
231234
podman.run();
232235

233236
let api_port = podman.get_port_mapping(9000).expect("minio api port");

0 commit comments

Comments
 (0)