1
0
mirror of https://git.cloudron.io/cloudron/minio-app synced 2025-09-10 03:35:42 +00:00

Compare commits

..

5 Commits

Author SHA1 Message Date
Girish Ramakrishnan
d1fa4ee583 Version 2.9.9 2022-10-10 12:23:17 +02:00
Girish Ramakrishnan
3bacd89adc Update minio to 2022-10-08T20-11-00Z 2022-10-10 12:11:27 +02:00
Girish Ramakrishnan
a8805259b5 Version 2.9.8 2022-10-06 10:39:47 +02:00
Girish Ramakrishnan
bcf271abc9 No need to version the client 2022-10-06 10:15:43 +02:00
Girish Ramakrishnan
101195f02f Update minio to RELEASE.2022-10-05T14-58-27Z 2022-10-06 10:05:58 +02:00
3 changed files with 18 additions and 5 deletions

View File

@@ -1454,3 +1454,17 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
* Re-load config after reset by @anjalshireesh in #15771
* fix: de-duplicate conflicting object names on namespace by @harshavardhana in #15772
[2.9.8]
* Update minio to 2022-10-05T14-58-27Z
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2022-10-05T14-58-27Z)
[2.9.9]
* Update minio to 2022-10-08T20-11-00Z
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2022-10-08T20-11-00Z)
* set bucket creation timestamp properly for legacy FS backend by @harshavardhana in #15800
* decom: Ignore object/version error during deletion by @vadmeste in #15806
* remove build asset caching by @harshavardhana in #15807
* Fix GetObjectRetention to parse in iso8601 time format by @poornas in #15809
* Update pkg to v1.4.5 by @reivaj05 in #15808
* remove unused debug param from evalActionFromLifecycle by @harshavardhana in #15813

View File

@@ -5,8 +5,8 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG",
"tagline": "Distributed object storage",
"version": "2.9.7",
"upstreamVersion": "2022-10-02T19-29-29Z",
"version": "2.9.9",
"upstreamVersion": "2022-10-08T20-11-00Z",
"healthCheckPath": "/minio/login",
"memoryLimit": 805306368,
"httpPort": 8000,

View File

@@ -3,13 +3,12 @@ FROM cloudron/base:3.2.0@sha256:ba1d566164a67c266782545ea9809dc611c4152e27686fd1
RUN mkdir -p /app/code
WORKDIR /app/code
ARG VERSION=RELEASE.2022-10-02T19-29-29Z
ARG MC_VERSION=RELEASE.2022-10-01T07-56-14Z
ARG VERSION=RELEASE.2022-10-08T20-11-00Z
# 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
RUN wget https://dl.min.io/client/mc/release/linux-amd64/mc -O /app/code/mc && chmod +x /app/code/mc
COPY env.sh start.sh /app/code/