mirror of
https://github.com/coollabsio/coolify.git
synced 2026-09-26 09:20:54 -04:00
chore(development): switch MinIO client to AIStor image
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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,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
|
||||
|
||||
Reference in New Issue
Block a user