chore(development): switch MinIO client to AIStor image

This commit is contained in:
Andras Bacsai
2026-09-14 13:02:49 +02:00
parent 59eacc9ff8
commit fde274c358
5 changed files with 9 additions and 7 deletions
+4
View File
@@ -95,3 +95,7 @@
## Do not auto-heal existing deployments without a request
- When a parser or label fix can apply only after container recreation, keep the change limited to new deployments and later user-initiated redeployments unless the user explicitly asks for live reconciliation.
- Do not add status lookup fallbacks that alter existing deployment behavior when the requested scope is new deployments only.
## Trace image replacements through build stages
- When replacing a container image for development, inspect both Compose services and every development Dockerfile `FROM` stage.
- A successful Compose pull does not prove the application build is free of the old image; validate the complete build dependency chain.
+2 -2
View File
@@ -162,7 +162,7 @@ services:
networks:
- coolify
# maxio-init:
# image: minio/mc:latest
# image: quay.io/minio/aistor/mc:latest
# pull_policy: always
# container_name: coolify-maxio-init
# restart: no
@@ -182,7 +182,7 @@ services:
# networks:
# - coolify
minio-init:
image: minio/mc:latest
image: quay.io/minio/aistor/mc:latest
pull_policy: always
container_name: coolify-minio-init
restart: no
+1 -1
View File
@@ -195,7 +195,7 @@ services:
minio-init:
profiles: ["minio"]
image: minio/mc:latest
image: quay.io/minio/aistor/mc:latest
pull_policy: always
restart: "no"
depends_on:
+1 -1
View File
@@ -150,7 +150,7 @@ services:
networks:
- coolify
minio-init:
image: minio/mc:latest
image: quay.io/minio/aistor/mc:latest
pull_policy: always
container_name: coolify-minio-init
restart: no
+1 -3
View File
@@ -1,8 +1,6 @@
# Versions
# https://hub.docker.com/r/serversideup/php/tags?name=8.4-fpm-nginx-alpine
ARG SERVERSIDEUP_PHP_VERSION=8.4-fpm-nginx-alpine
# https://github.com/minio/mc/releases
ARG MINIO_VERSION=RELEASE.2025-08-13T08-35-41Z
# https://github.com/cloudflare/cloudflared/releases
ARG CLOUDFLARED_VERSION=2025.7.0
# https://www.postgresql.org/support/versioning/
@@ -14,7 +12,7 @@ ARG NGINX_VERSION=1.31.2-r1
# =================================================================
# Get MinIO client
# =================================================================
FROM minio/mc:${MINIO_VERSION} AS minio-client
FROM quay.io/minio/aistor/mc:latest AS minio-client
# =================================================================
# Final Stage: Production image