comphead opened a new issue, #2446:
URL: https://github.com/apache/datafusion-ballista/issues/2446
**Describe the bug**
The `test linux crates` job (`cargo test --profile ci
--features=testcontainers`) fails because the MinIO image that
`testcontainers-modules` pins can no longer be pulled:
```
failed to pull the image 'minio/minio:RELEASE.2025-02-28T09-55-16Z', error:
Docker responded with status code 404: pull access denied for minio/minio,
repository does not exist or may require 'docker login': denied: requested
access to the resource is denied
```
MinIO withdrew the `minio/minio` repository from Docker Hub on 2026-09-11.
The repository itself 404s:
```
$ curl -sS -o /dev/null -w 'repo: %{http_code}\n'
https://hub.docker.com/v2/repositories/minio/minio/
repo: 404
```
Every `testcontainers-modules` version pins the same tag, so downgrading the
crate does not help. quay.io still serves that tag.
The affected tests are in `examples/tests/object_store.rs`, which start
their container via `create_minio_container()` in
`examples/tests/common/mod.rs`.
Seen on
https://github.com/apache/datafusion-ballista/actions/runs/34671770855.
**To Reproduce**
```
cargo test --profile ci --features=testcontainers
```
**Expected behavior**
The object store integration tests start their MinIO container and pass.
**Additional context**
DataFusion hit the same breakage: apache/datafusion#25215, fixed by
apache/datafusion#25216.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]