mirror of
https://github.com/suitenumerique/docs.git
synced 2026-09-22 09:35:08 +02:00
🐛(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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user