revert(dev): drop minio/mc registry changes (fixed upstream)

The minio mc client fix landed upstream, so remove it from this branch to avoid
duplication/conflict. Restores docker-compose.dev.yml, docker-compose-maxio.dev.yml,
docker-compose.dev-multi.yml, and docker/development/Dockerfile to their base
state. The unrelated shared-variables sidebar-sticky fix is retained.
This commit is contained in:
Aditya Tripathi
2026-09-14 11:36:26 +00:00
parent f39fa67cf0
commit db6b089876
4 changed files with 4 additions and 9 deletions
+1 -2
View File
@@ -182,8 +182,7 @@ services:
# networks:
# - coolify
minio-init:
# MinIO removed the mc client from Docker Hub; pull it from MinIO's own registry.
image: quay.io/minio/mc:latest
image: minio/mc:latest
pull_policy: always
container_name: coolify-minio-init
restart: no
+1 -2
View File
@@ -195,8 +195,7 @@ services:
minio-init:
profiles: ["minio"]
# MinIO removed the mc client from Docker Hub; pull it from MinIO's own registry.
image: quay.io/minio/mc:latest
image: minio/mc:latest
pull_policy: always
restart: "no"
depends_on:
+1 -2
View File
@@ -150,8 +150,7 @@ services:
networks:
- coolify
minio-init:
# MinIO removed the mc client from Docker Hub; pull it from MinIO's own registry.
image: quay.io/minio/mc:latest
image: minio/mc:latest
pull_policy: always
container_name: coolify-minio-init
restart: no
+1 -3
View File
@@ -14,9 +14,7 @@ ARG NGINX_VERSION=1.31.2-r1
# =================================================================
# Get MinIO client
# =================================================================
# MinIO removed the mc client from Docker Hub; pull the pinned build from
# MinIO's own registry (quay.io) instead.
FROM quay.io/minio/mc:${MINIO_VERSION} AS minio-client
FROM minio/mc:${MINIO_VERSION} AS minio-client
# =================================================================
# Final Stage: Production image