From a85c1935bcf1a5f02a7f624817c979ebbcb90c7f Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Mon, 7 Feb 2022 13:10:25 -0800 Subject: [PATCH] Version 2.2.1 --- CHANGELOG | 6 ++++++ CloudronManifest.json | 2 +- DESCRIPTION.md | 2 +- Dockerfile | 7 ++++--- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 510c3a3..dc2dab7 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1028,3 +1028,9 @@ Improve replication performance. See (#12080, #12054, #12009) for more details. [2.2.0] * Update minio to 2022-02-05T04-40-59Z * [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2022-02-05T04-40-59Z) + +[2.2.1] +* Update minio to 2022-02-07T08-17-33Z +* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2022-02-07T08-17-33Z) + + diff --git a/CloudronManifest.json b/CloudronManifest.json index 9470cac..4b53ec5 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -5,7 +5,7 @@ "description": "file://DESCRIPTION.md", "changelog": "file://CHANGELOG", "tagline": "Distributed object storage", - "version": "2.2.0", + "version": "2.2.1", "healthCheckPath": "/minio/login", "httpPort": 8000, "httpPorts": { diff --git a/DESCRIPTION.md b/DESCRIPTION.md index e85924f..2493fbf 100644 --- a/DESCRIPTION.md +++ b/DESCRIPTION.md @@ -1,4 +1,4 @@ -This app packages Minio 2022-02-05T04-40-59Z. +This app packages Minio 2022-02-07T08-17-33Z. Minio is a distributed object storage server built for cloud applications and devops. diff --git a/Dockerfile b/Dockerfile index 67df5ed..7b02335 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,11 +4,12 @@ RUN mkdir -p /app/code WORKDIR /app/code ARG VERSION=RELEASE.2022-02-07T08-17-33Z -ARG MC_VERSION=RELEASE.2022-02-02T02-03-24Z +ARG MC_VERSION=RELEASE.2022-02-07T09-25-34Z # sometimes here https://dl.min.io/server/minio/release/linux-amd64/archive/ -RUN wget https://dl.min.io/server/minio/release/linux-amd64/minio.${VERSION} -O /app/code/minio && chmod +x /app/code/minio && \ - wget https://dl.min.io/client/mc/release/linux-amd64/mc.${MC_VERSION} -O /app/code/mc && chmod +x /app/code/mc +RUN wget https://dl.min.io/server/minio/release/linux-amd64/minio.${VERSION} -O /app/code/minio && chmod +x /app/code/minio +# https://dl.min.io/client/mc/release/linux-amd64/ +RUN wget https://dl.min.io/client/mc/release/linux-amd64/mc.${MC_VERSION} -O /app/code/mc && chmod +x /app/code/mc COPY env.sh minio-credentials start.sh /app/code/