mirror of
https://git.cloudron.io/cloudron/minio-app
synced 2025-09-14 17:09:08 +00:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
b0f6a030f3 | ||
|
84b4ebeac4 | ||
|
c5404f53c1 |
@@ -2140,3 +2140,11 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
|
|||||||
* Capture percentage of cpu load and memory used by @anjalshireesh in #18596
|
* Capture percentage of cpu load and memory used by @anjalshireesh in #18596
|
||||||
* fix: use the right channel to feed the data in by @harshavardhana in #18605
|
* fix: use the right channel to feed the data in by @harshavardhana in #18605
|
||||||
* Update Console version to v0.42.1 by @bexsoft in #18606
|
* Update Console version to v0.42.1 by @bexsoft in #18606
|
||||||
|
|
||||||
|
[3.11.0]
|
||||||
|
* Update minio to 2023-12-09T18-17-51Z
|
||||||
|
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2023-12-09T18-17-51Z)
|
||||||
|
* Add support of conf file to pass arguments and options by @vadmeste in #18592
|
||||||
|
* feat: add events_errors_total metric by @jiuker in #18610
|
||||||
|
* add configuration to limit replication workers by @poornas in #18601
|
||||||
|
* use latest minisign release by @harshavardhana in #18614
|
||||||
|
@@ -5,8 +5,8 @@
|
|||||||
"description": "file://DESCRIPTION.md",
|
"description": "file://DESCRIPTION.md",
|
||||||
"changelog": "file://CHANGELOG",
|
"changelog": "file://CHANGELOG",
|
||||||
"tagline": "Distributed object storage",
|
"tagline": "Distributed object storage",
|
||||||
"version": "3.10.2",
|
"version": "3.11.0",
|
||||||
"upstreamVersion": "2023-12-07T04-16-00Z",
|
"upstreamVersion": "2023-12-09T18-17-51Z",
|
||||||
"healthCheckPath": "/minio/login",
|
"healthCheckPath": "/minio/login",
|
||||||
"memoryLimit": 805306368,
|
"memoryLimit": 805306368,
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
|
@@ -3,7 +3,7 @@ FROM cloudron/base:4.2.0@sha256:46da2fffb36353ef714f97ae8e962bd2c212ca091108d768
|
|||||||
RUN mkdir -p /app/code
|
RUN mkdir -p /app/code
|
||||||
WORKDIR /app/code
|
WORKDIR /app/code
|
||||||
|
|
||||||
ARG VERSION=RELEASE.2023-12-07T04-16-00Z
|
ARG VERSION=RELEASE.2023-12-09T18-17-51Z
|
||||||
|
|
||||||
# sometimes here https://dl.min.io/server/minio/release/linux-amd64/archive/
|
# 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
|
# RUN wget https://dl.min.io/server/minio/release/linux-amd64/minio.${VERSION} -O /app/code/minio && chmod +x /app/code/minio
|
||||||
|
4
start.sh
4
start.sh
@@ -4,6 +4,7 @@ set -eu
|
|||||||
|
|
||||||
mkdir -p /app/data/data /run/minio/config /run/minio/certs
|
mkdir -p /app/data/data /run/minio/config /run/minio/certs
|
||||||
|
|
||||||
|
# env vars take precedence over config.yaml (https://github.com/minio/minio/blob/master/docs/distributed/CONFIG.md#things-to-know)
|
||||||
[[ ! -f /app/data/env.sh ]] && cp /app/code/env.sh /app/data/env.sh
|
[[ ! -f /app/data/env.sh ]] && cp /app/code/env.sh /app/data/env.sh
|
||||||
source /app/data/env.sh
|
source /app/data/env.sh
|
||||||
|
|
||||||
@@ -20,7 +21,6 @@ fi
|
|||||||
echo "==> Changing ownership"
|
echo "==> Changing ownership"
|
||||||
[[ $(stat --format '%U' /app/data/data) != "cloudron" ]] && chown -R cloudron:cloudron /app/data
|
[[ $(stat --format '%U' /app/data/data) != "cloudron" ]] && chown -R cloudron:cloudron /app/data
|
||||||
|
|
||||||
# the --config-dir is deprecated and not used. but without it, minio will try to create $HOME/.minio :/ same for --certs-dir
|
|
||||||
echo "==> Starting minio"
|
echo "==> Starting minio"
|
||||||
exec /usr/local/bin/gosu cloudron:cloudron /app/code/minio --certs-dir /run/minio/certs --config-dir /run/minio/config --quiet ${CLOUDRON_MINIO_STARTUP_ARGS} --address :9000 --console-address :8000
|
exec /usr/local/bin/gosu cloudron:cloudron /app/code/minio --quiet ${CLOUDRON_MINIO_STARTUP_ARGS} --address :9000 --console-address :8000
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user