🐛(docker) pull minio images from quay.io

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 <kernicpanel@nclerc.fr>
This commit is contained in:
Nicolas Clerc
2026-09-14 08:18:32 +00:00
committed by GitHub
parent 2986cc6158
commit 0c45a2824b
7 changed files with 11 additions and 12 deletions
+2 -2
View File
@@ -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
+1
View File
@@ -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
+2 -2
View File
@@ -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
@@ -1,6 +1,6 @@
services:
minio:
image: minio/minio
image: quay.io/minio/minio
environment:
- MINIO_ROOT_USER=<set minio root username>
- MINIO_ROOT_PASSWORD=<set minio root password>
@@ -1,6 +1,6 @@
minio:
enabled: true
image: minio/minio
image: quay.io/minio/minio
name: minio
# serviceNameOverride: docs-minio
ingress:
@@ -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
@@ -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