mirror of
https://git.cloudron.io/cloudron/minio-app
synced 2025-09-13 08:19:12 +00:00
Compare commits
9 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
6346e564f9 | ||
|
4843a8345a | ||
|
fd7c75da9f | ||
|
327ede57c3 | ||
|
179628163f | ||
|
dfcab10abe | ||
|
642f1860d2 | ||
|
bc6656111f | ||
|
53371d5428 |
16
CHANGELOG
16
CHANGELOG
@@ -1063,3 +1063,19 @@ Improve replication performance. See (#12080, #12054, #12009) for more details.
|
||||
* add filesystem group change policy for large minio deployments by @dharapvj in #14528
|
||||
* Fix regression from range GET proxying #14345 by @poornas in #14532
|
||||
|
||||
[2.4.2]
|
||||
* Update minio to 2022-03-14T18-25-24Z
|
||||
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2022-03-14T18-25-24Z)
|
||||
|
||||
[2.4.3]
|
||||
* Update minio to 2022-03-17T06-34-49Z
|
||||
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2022-03-17T06-34-49Z)
|
||||
|
||||
[2.4.4]
|
||||
* Update minio to 2022-03-22T02-05-10Z
|
||||
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2022-03-22T02-05-10Z)
|
||||
|
||||
[2.4.5]
|
||||
* Update minio to 2022-03-24T00-43-44Z
|
||||
* [Changelog](https://github.com/minio/minio/releases/tag/RELEASE.2022-03-24T00-43-44Z)
|
||||
|
||||
|
@@ -5,8 +5,8 @@
|
||||
"description": "file://DESCRIPTION.md",
|
||||
"changelog": "file://CHANGELOG",
|
||||
"tagline": "Distributed object storage",
|
||||
"version": "2.4.1",
|
||||
"upstreamVersion": "2022-03-11T23-57-45Z",
|
||||
"version": "2.4.5",
|
||||
"upstreamVersion": "2022-03-24T00-43-44Z",
|
||||
"healthCheckPath": "/minio/login",
|
||||
"httpPort": 8000,
|
||||
"httpPorts": {
|
||||
|
@@ -1,27 +1,29 @@
|
||||
## About
|
||||
|
||||
Minio is a distributed object storage server built for cloud applications and devops.
|
||||
|
||||
### Features
|
||||
## Features
|
||||
|
||||
#### Amazon S3 Compatible
|
||||
### Amazon S3 Compatible
|
||||
|
||||
Minio implements Amazon S3 v4 APIs. Minio also includes client SDKs and a console utility.
|
||||
|
||||
#### Minimalist Design
|
||||
### Minimalist Design
|
||||
|
||||
Minio is deeply influenced by minimalism. We believe that only simple things scale.
|
||||
|
||||
#### Apache License 2.0
|
||||
### Apache License 2.0
|
||||
|
||||
Minio is free software, released under Apache license v2.0. Minio has an active developer and user community.
|
||||
|
||||
#### Lambda Functions
|
||||
### Lambda Functions
|
||||
|
||||
Minio triggers Lambda functions through event notification service. In addition Minio also supports simple queueing service for AMQP, Elasticsearch, Redis, NATS and Postgres targets.
|
||||
|
||||
#### Erasure Code & Bitrot Protection
|
||||
### Erasure Code & Bitrot Protection
|
||||
|
||||
Minio protects data against hardware failures and silent data corruption using erasure code and checksums. You may lose half the number of drives and still recover from it.
|
||||
|
||||
#### Written in Go
|
||||
### Written in Go
|
||||
|
||||
Go is an emerging language of choice for modern cloud infrastructure projects. Go language enables Minio to be highly concurrent and lightweight.
|
||||
|
@@ -3,8 +3,8 @@ FROM cloudron/base:3.2.0@sha256:ba1d566164a67c266782545ea9809dc611c4152e27686fd1
|
||||
RUN mkdir -p /app/code
|
||||
WORKDIR /app/code
|
||||
|
||||
ARG VERSION=RELEASE.2022-03-11T23-57-45Z
|
||||
ARG MC_VERSION=RELEASE.2022-03-09T02-08-36Z
|
||||
ARG VERSION=RELEASE.2022-03-24T00-43-44Z
|
||||
ARG MC_VERSION=RELEASE.2022-03-17T20-25-06Z
|
||||
|
||||
# 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
|
||||
|
Reference in New Issue
Block a user