mirror of
https://git.cloudron.io/cloudron/minio-app
synced 2025-09-13 16:29:13 +00:00
Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
1ef2baf396 | ||
|
20706ccaf4 | ||
|
4100d16964 | ||
|
a85c1935bc | ||
|
f4996c9fc9 | ||
|
5e1f06e1e9 | ||
|
a89ff592f0 | ||
|
9471c04cb9 |
13
CHANGELOG
13
CHANGELOG
@@ -1024,3 +1024,16 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
|
||||
* do not expect 'speedtest' to be a bucket by @harshavardhana in #14199
|
||||
* Optimize read locker cleanup by @klauspost in #14200
|
||||
* Ensure that AssumeRole calls are sent to Audit log by @donatello in #14202
|
||||
|
||||
[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)
|
||||
|
||||
[2.3.0]
|
||||
* Update minio to 2022-02-18T01-50-10Z
|
||||
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2022-02-18T01-50-10Z)
|
||||
|
||||
|
@@ -5,7 +5,7 @@
|
||||
"description": "file://DESCRIPTION.md",
|
||||
"changelog": "file://CHANGELOG",
|
||||
"tagline": "Distributed object storage",
|
||||
"version": "2.1.0",
|
||||
"version": "2.3.0",
|
||||
"healthCheckPath": "/minio/login",
|
||||
"httpPort": 8000,
|
||||
"httpPorts": {
|
||||
|
@@ -1,4 +1,4 @@
|
||||
This app packages Minio <upstream>2022-01-28T02-28-16Z</upstream>.
|
||||
This app packages Minio <upstream>2022-02-18T01-50-10Z</upstream>.
|
||||
|
||||
Minio is a distributed object storage server built for cloud applications and devops.
|
||||
|
||||
|
10
Dockerfile
10
Dockerfile
@@ -3,11 +3,13 @@ FROM cloudron/base:3.2.0@sha256:ba1d566164a67c266782545ea9809dc611c4152e27686fd1
|
||||
RUN mkdir -p /app/code
|
||||
WORKDIR /app/code
|
||||
|
||||
ARG VERSION=RELEASE.2022-01-28T02-28-16Z
|
||||
ARG MC_VERSION=RELEASE.2022-01-29T01-03-27Z
|
||||
ARG VERSION=RELEASE.2022-02-18T01-50-10Z
|
||||
ARG MC_VERSION=RELEASE.2022-02-16T05-54-01Z
|
||||
|
||||
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
|
||||
# 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
|
||||
# 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/
|
||||
|
||||
|
Reference in New Issue
Block a user