Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,6 @@
'software.amazon.awssdk{/,}**',
],
},

// Special versioning for Minio
{
matchManagers: [
Expand All @@ -222,11 +221,12 @@
],
versioning: 'regex:^RELEASE\\.(?<major>\\d{4})-(?<minor>\\d{2})-(?<patch>\\d{2})T(?<build>\\d{2})-(?<revision>\\d{2})-\\d{2}Z',
matchPackageNames: [
'/^quay.io/minio/minio/',
'/^ghcr.io/snazy/maxio-release/',
],
// see https://docs.renovatebot.com/modules/versioning/#regular-expression-versioning
// see https://github.com/renovatebot/renovate/issues/2438
},

{
groupName: 'Quarkus Platform and Group',
matchManagers: [
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ as necessary. Empty sections will not end in the release notes.

### Changes

- Migrate from the MinIO docker image repository to latest MinIO release w/ the recent security fix(es?).

### Deprecations

### Fixes
Expand Down
4 changes: 2 additions & 2 deletions docker/all-in-one/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ services:

# MinIO
minio:
image: quay.io/minio/minio:RELEASE.2025-09-07T16-13-09Z
image: ghcr.io/snazy/maxio-release:RELEASE.2025-10-15T17-29-55Z
ports:
# API port
- "9002:9000"
Expand All @@ -196,7 +196,7 @@ services:

# Create MinIO bucket
minio-setup:
image: quay.io/minio/minio:RELEASE.2025-09-07T16-13-09Z
image: ghcr.io/snazy/maxio-release:RELEASE.2025-10-15T17-29-55Z
depends_on:
minio:
condition: service_healthy
Expand Down
4 changes: 2 additions & 2 deletions docker/catalog-auth-s3-otel/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ services:

# MinIO
minio:
image: quay.io/minio/minio:RELEASE.2025-09-07T16-13-09Z
image: ghcr.io/snazy/maxio-release:RELEASE.2025-10-15T17-29-55Z
ports:
# API port
- "9002:9000"
Expand All @@ -185,7 +185,7 @@ services:

# Create MinIO bucket
minio-setup:
image: quay.io/minio/minio:RELEASE.2025-09-07T16-13-09Z
image: ghcr.io/snazy/maxio-release:RELEASE.2025-10-15T17-29-55Z
depends_on:
minio:
condition: service_healthy
Expand Down
4 changes: 2 additions & 2 deletions docker/catalog-auth-s3/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ services:

# MinIO
minio:
image: quay.io/minio/minio:RELEASE.2025-09-07T16-13-09Z
image: ghcr.io/snazy/maxio-release:RELEASE.2025-10-15T17-29-55Z
ports:
# API port
- "9002:9000"
Expand All @@ -132,7 +132,7 @@ services:

# Create MinIO bucket
minio-setup:
image: quay.io/minio/minio:RELEASE.2025-09-07T16-13-09Z
image: ghcr.io/snazy/maxio-release:RELEASE.2025-10-15T17-29-55Z
depends_on:
minio:
condition: service_healthy
Expand Down
4 changes: 2 additions & 2 deletions docker/catalog-nginx-https/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ services:

# MinIO
minio:
image: quay.io/minio/minio:RELEASE.2025-09-07T16-13-09Z
image: ghcr.io/snazy/maxio-release:RELEASE.2025-10-15T17-29-55Z
ports:
# API port, used by Nessie
- "9000:9000"
Expand All @@ -121,7 +121,7 @@ services:

# Create MinIO bucket
minio-setup:
image: quay.io/minio/minio:RELEASE.2025-09-07T16-13-09Z
image: ghcr.io/snazy/maxio-release:RELEASE.2025-10-15T17-29-55Z
depends_on:
minio:
condition: service_healthy
Expand Down
2 changes: 1 addition & 1 deletion site/docs/guides/spark-s3.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ For this example, start a local Minio server using Docker:
```shell
docker run -p 9000:9000 -p 9001:9001 --name minio \
-e "MINIO_ROOT_USER=datauser" -e "MINIO_ROOT_PASSWORD=minioSecret" \
quay.io/minio/minio:latest server /data --console-address ":9001"
ghcr.io/snazy/maxio-release:latest server /data --console-address ":9001"
```

Configure AWS SDK crendetials the same way you would configure them for Amazon S3 (refer to the section above)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Dockerfile to provide the image name and tag to a test.
# Version is managed by Renovate - do not edit.
FROM quay.io/minio/minio:RELEASE.2025-09-07T16-13-09Z
FROM ghcr.io/snazy/maxio-release:RELEASE.2025-10-15T17-29-55Z