mirror of
https://git.cloudron.io/cloudron/minio-app
synced 2025-09-10 03:35:42 +00:00
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
d1fa4ee583 | ||
|
3bacd89adc | ||
|
a8805259b5 | ||
|
bcf271abc9 | ||
|
101195f02f |
14
CHANGELOG
14
CHANGELOG
@@ -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
|
||||
|
||||
|
@@ -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,
|
||||
|
@@ -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/
|
||||
|
||||
|
Reference in New Issue
Block a user