mirror of https://github.com/minio/minio.git
Update minio micro services description
This commit is contained in:
parent
762b798767
commit
94b0243341
|
@ -1,6 +1,10 @@
|
||||||
## Minio [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/minio/minio?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
## Minio [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/minio/minio?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||||
|
|
||||||
Minio is a minimal cloud storage server for Micro Services & Magnetic Disks. Written in Golang and licensed under [Apache license v2](./LICENSE). Compatible with Amazon S3 APIs.
|
Minio is a minimal cloud storage server for Micro Services. Written in Golang and licensed under [Apache license v2](./LICENSE). Compatible with Amazon S3 APIs.
|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
Micro services environment provisions one Minio server per application instance. Scalability is achieved to through large number of smaller personalized instances. This version of the Minio binary is built using Filesystem storage backend for magnetic and solid state disks.
|
||||||
|
|
||||||
## Minio Client
|
## Minio Client
|
||||||
|
|
||||||
|
|
4
main.go
4
main.go
|
@ -106,8 +106,8 @@ func registerApp() *cli.App {
|
||||||
// hide --version flag, version is a command
|
// hide --version flag, version is a command
|
||||||
app.HideVersion = true
|
app.HideVersion = true
|
||||||
app.Author = "Minio.io"
|
app.Author = "Minio.io"
|
||||||
app.Usage = "Cloud Storage Server for Micro Services & Magnetic Disks."
|
app.Usage = "Cloud Storage Server for Micro Services."
|
||||||
app.Description = `Micro services environment provisions one Minio server per application instance. Scalability is achieved to through large number of smaller personalized instances. This version of the Minio binary is built using Filesystem storage backend for magnetic disk. It is ideal for storing large objects with sizes ranging from few MBs to GBs. Minio binary is small enough to be bundled along with the application stack.`
|
app.Description = `Micro services environment provisions one Minio server per application instance. Scalability is achieved to through large number of smaller personalized instances. This version of the Minio binary is built using Filesystem storage backend for magnetic and solid state disks.`
|
||||||
app.Flags = flags
|
app.Flags = flags
|
||||||
app.Commands = commands
|
app.Commands = commands
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue