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

Compare commits

..

3 Commits

Author SHA1 Message Date
Johannes Zellner
e1a29850c8 Bump version 2024-02-13 11:09:56 +01:00
Johannes Zellner
c94a90e4ab Update to 2024-02-12T21-02-27Z 2024-02-13 10:44:20 +01:00
Girish Ramakrishnan
d4ec80fab3 2GB min (RAM)
https://github.com/minio/minio/issues/18906
https://github.com/minio/docs/issues/1116
https://github.com/minio/minio/pull/18846
2024-02-12 06:44:34 +01:00
3 changed files with 17 additions and 4 deletions

View File

@@ -2312,3 +2312,16 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
* Add extra disconnect safety by @klauspost in https://github.com/minio/minio/pull/19022
* introduce reader deadlines for net.Conn by @harshavardhana in https://github.com/minio/minio/pull/19023
[3.12.11]
* Update minio to 2024-02-12T21-02-27Z
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2024-02-12T21-02-27Z)
* avoid excessive logging for objects that do not exist by @harshavardhana in https://github.com/minio/minio/pull/19030
* Fix panic in tagging request proxying by @poornas in https://github.com/minio/minio/pull/19032
* do not have to use the same distributionAlgo as first pool by @harshavardhana in https://github.com/minio/minio/pull/19031
* fix: allow configuring excess versions alerting by @harshavardhana in https://github.com/minio/minio/pull/19028
* preserve conflicting objects when parent object is being deleted by @harshavardhana in https://github.com/minio/minio/pull/19034
* Convert service account add/update expiration to cond values by @vadmeste in https://github.com/minio/minio/pull/19024
* relax pre-emptive GetBucketInfo() for multi-object delete by @harshavardhana in https://github.com/minio/minio/pull/19035
* honor replaced disk properly by updating globalLocalDrives by @harshavardhana in https://github.com/minio/minio/pull/19038
* metrics: fix typo in namespace for proxy tagging metric by @poornas in https://github.com/minio/minio/pull/19039

View File

@@ -5,10 +5,10 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG",
"tagline": "Distributed object storage",
"version": "3.12.10",
"upstreamVersion": "2024-02-09T21-25-16Z",
"version": "3.12.11",
"upstreamVersion": "2024-02-12T21-02-27Z",
"healthCheckPath": "/minio/login",
"memoryLimit": 805306368,
"memoryLimit": 2147483648,
"httpPort": 8000,
"httpPorts": {
"API_SERVER_DOMAIN": {

View File

@@ -3,7 +3,7 @@ FROM cloudron/base:4.2.0@sha256:46da2fffb36353ef714f97ae8e962bd2c212ca091108d768
RUN mkdir -p /app/code
WORKDIR /app/code
ARG VERSION=RELEASE.2024-02-09T21-25-16Z
ARG VERSION=RELEASE.2024-02-12T21-02-27Z
# 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