1
0
mirror of https://git.cloudron.io/cloudron/minio-app synced 2025-09-25 06:27:51 +00:00

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

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