From 772f724468c65482d6b7c78da6e09a0aff4f3623 Mon Sep 17 00:00:00 2001 From: Aditya Tripathi Date: Mon, 14 Sep 2026 06:04:14 +0000 Subject: [PATCH] fix(dev): pull minio mc client from quay.io MinIO removed the mc client image from Docker Hub, so 'minio/mc:latest' now fails with 'pull access denied / authentication required' and breaks the dev minio-init container (spin up / docker compose up). Repoint minio-init to quay.io/minio/mc:latest (MinIO's own registry, pullable without login) in the dev, maxio, and dev-multi compose files. The minio server image (coollabsio/maxio:latest) still pulls fine and is unchanged. --- docker-compose-maxio.dev.yml | 3 ++- docker-compose.dev-multi.yml | 3 ++- docker-compose.dev.yml | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/docker-compose-maxio.dev.yml b/docker-compose-maxio.dev.yml index d408ff94fc..293836a237 100644 --- a/docker-compose-maxio.dev.yml +++ b/docker-compose-maxio.dev.yml @@ -182,7 +182,8 @@ services: # networks: # - coolify minio-init: - image: minio/mc:latest + # MinIO removed the mc client from Docker Hub; pull it from MinIO's own registry. + image: quay.io/minio/mc:latest pull_policy: always container_name: coolify-minio-init restart: no diff --git a/docker-compose.dev-multi.yml b/docker-compose.dev-multi.yml index 3ce7b4bf3c..56c3b33cfa 100644 --- a/docker-compose.dev-multi.yml +++ b/docker-compose.dev-multi.yml @@ -195,7 +195,8 @@ services: minio-init: profiles: ["minio"] - image: minio/mc:latest + # MinIO removed the mc client from Docker Hub; pull it from MinIO's own registry. + image: quay.io/minio/mc:latest pull_policy: always restart: "no" depends_on: diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml index 76aa0b88eb..0bf770e339 100644 --- a/docker-compose.dev.yml +++ b/docker-compose.dev.yml @@ -150,7 +150,8 @@ services: networks: - coolify minio-init: - image: minio/mc:latest + # MinIO removed the mc client from Docker Hub; pull it from MinIO's own registry. + image: quay.io/minio/mc:latest pull_policy: always container_name: coolify-minio-init restart: no