File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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" ) ;
You can’t perform that action at this time.
0 commit comments