From 0c45a2824bc5b180830180db451c2831ee3b7cb3 Mon Sep 17 00:00:00 2001 From: Nicolas Clerc <720491+kernicPanel@users.noreply.github.com> Date: Mon, 14 Sep 2026 10:18:32 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(docker)=20pull=20minio=20images=20?= =?UTF-8?q?from=20quay.io?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit MinIO stopped publishing images on Docker Hub in October 2025 and archived its GitHub repository in February 2026. `minio/mc` and `minio/minio` can no longer be pulled, so the `createbuckets` service fails with `pull access denied for minio/mc`. The same images are still served from quay.io. Signed-off-by: Nicolas Clerc --- .github/workflows/impress.yml | 4 ++-- CHANGELOG.md | 1 + compose.yml | 4 ++-- documentation/examples/compose/minio/compose.yaml | 2 +- documentation/examples/helm/minio.values.yaml | 2 +- src/helm/env.d/dev/values.dev-backend.yaml.gotmpl | 5 ++--- src/helm/env.d/feature/values.dev-backend.yaml.gotmpl | 5 ++--- 7 files changed, 11 insertions(+), 12 deletions(-) diff --git a/.github/workflows/impress.yml b/.github/workflows/impress.yml index 9aae0cd28..bb5ec50b8 100644 --- a/.github/workflows/impress.yml +++ b/.github/workflows/impress.yml @@ -166,13 +166,13 @@ jobs: - name: Start MinIO run: | - docker pull minio/minio + docker pull quay.io/minio/minio docker run -d --name minio \ -p 9000:9000 \ -e "MINIO_ACCESS_KEY=impress" \ -e "MINIO_SECRET_KEY=password" \ -v /data/media:/data \ - minio/minio server --console-address :9001 /data + quay.io/minio/minio server --console-address :9001 /data # Tool to wait for a service to be ready - name: Install Dockerize diff --git a/CHANGELOG.md b/CHANGELOG.md index 41f9fbfbe..4120dc535 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ and this project adheres to - 🐛(frontend) preserve page titles when adding an emoji #2586 - 🐛(frontend) hide the selection highlight on presenter images #2665 - 🐛(y-provider) prevent process crash on malformed websocket frames #2673 +- 🐛(docker) pull minio images from quay.io #2675 - ♿️(frontend) restore presenter focus trapping after share links #2533 ## [v5.6.1] - 2026-09-04 diff --git a/compose.yml b/compose.yml index 7d4e1422f..a46236001 100644 --- a/compose.yml +++ b/compose.yml @@ -26,7 +26,7 @@ services: minio: user: ${DOCKER_USER:-1000} - image: minio/minio + image: quay.io/minio/minio environment: - MINIO_ROOT_USER=impress - MINIO_ROOT_PASSWORD=password @@ -44,7 +44,7 @@ services: - ./data/media:/data createbuckets: - image: minio/mc + image: quay.io/minio/mc depends_on: minio: condition: service_healthy diff --git a/documentation/examples/compose/minio/compose.yaml b/documentation/examples/compose/minio/compose.yaml index 2ec8beb26..124b9ba4e 100644 --- a/documentation/examples/compose/minio/compose.yaml +++ b/documentation/examples/compose/minio/compose.yaml @@ -1,6 +1,6 @@ services: minio: - image: minio/minio + image: quay.io/minio/minio environment: - MINIO_ROOT_USER= - MINIO_ROOT_PASSWORD= diff --git a/documentation/examples/helm/minio.values.yaml b/documentation/examples/helm/minio.values.yaml index 60cc59512..f294f839a 100644 --- a/documentation/examples/helm/minio.values.yaml +++ b/documentation/examples/helm/minio.values.yaml @@ -1,6 +1,6 @@ minio: enabled: true - image: minio/minio + image: quay.io/minio/minio name: minio # serviceNameOverride: docs-minio ingress: diff --git a/src/helm/env.d/dev/values.dev-backend.yaml.gotmpl b/src/helm/env.d/dev/values.dev-backend.yaml.gotmpl index 76ab8badd..deaabb964 100644 --- a/src/helm/env.d/dev/values.dev-backend.yaml.gotmpl +++ b/src/helm/env.d/dev/values.dev-backend.yaml.gotmpl @@ -15,7 +15,7 @@ redis: password: pass minio: enabled: true - image: minio/minio + image: quay.io/minio/minio name: minio ingress: enabled: true @@ -51,9 +51,8 @@ keycloak: database: keycloak size: 1Gi image: postgres:16-alpine - realm: + realm: name: docs username: docs password: docs email: docs@example.com - diff --git a/src/helm/env.d/feature/values.dev-backend.yaml.gotmpl b/src/helm/env.d/feature/values.dev-backend.yaml.gotmpl index 242c17d47..2b48547a4 100644 --- a/src/helm/env.d/feature/values.dev-backend.yaml.gotmpl +++ b/src/helm/env.d/feature/values.dev-backend.yaml.gotmpl @@ -15,7 +15,7 @@ redis: password: pass minio: enabled: true - image: minio/minio + image: quay.io/minio/minio name: minio ingress: enabled: true @@ -53,9 +53,8 @@ keycloak: database: keycloak size: 5Gi image: postgres:16-alpine - realm: + realm: name: docs username: docs password: docs email: docs@example.com -