Version 2.2.1

This commit is contained in:
Girish Ramakrishnan 2022-02-07 13:10:25 -08:00
parent f4996c9fc9
commit a85c1935bc
4 changed files with 12 additions and 5 deletions

View File

@ -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)

View File

@ -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": {

View File

@ -1,4 +1,4 @@
This app packages Minio <upstream>2022-02-05T04-40-59Z</upstream>.
This app packages Minio <upstream>2022-02-07T08-17-33Z</upstream>.
Minio is a distributed object storage server built for cloud applications and devops.

View File

@ -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/