1
0
mirror of https://github.com/minio/docs.git synced 2025-07-30 07:03:26 +03:00

DOCS-492: Container Platform Docs

This commit also generally cleans up the Installation docs and uses /includes/<platform>/steps-*.rst as a pattern for storing platform-specific tutorials within a single root URL.

Finally, due to API rate limits, this commit adds some Makefile magic to allow skipping of sync'ing dependencies. Pass `make BUILD_DEPENDENCIES=FALSE <platform>` to skip building any deps and use what is already in the branch.
This commit is contained in:
Ravind Kumar
2022-07-13 18:28:06 -04:00
committed by Ravind Kumar
parent 9f6086fdc6
commit c783e10594
26 changed files with 919 additions and 721 deletions

View File

@ -12,19 +12,19 @@ Java 1.8 or above.
<dependency>
<groupId>io.minio</groupId>
<artifactId>minio</artifactId>
<version>8.4.2</version>
<version>8.4.3</version>
</dependency>
```
## Gradle usage
```
dependencies {
implementation("io.minio:minio:8.4.2")
implementation("io.minio:minio:8.4.3")
}
```
## JAR download
The latest JAR can be downloaded from [here](https://repo1.maven.org/maven2/io/minio/minio/8.4.2/)
The latest JAR can be downloaded from [here](https://repo1.maven.org/maven2/io/minio/minio/8.4.3/)
## Quick Start Example - File Uploader
This example program connects to an object storage server, makes a bucket on the server and then uploads a file to the bucket.
@ -92,12 +92,12 @@ public class FileUploader {
#### Compile FileUploader
```sh
$ javac -cp minio-8.4.2-all.jar FileUploader.java
$ javac -cp minio-8.4.3-all.jar FileUploader.java
```
#### Run FileUploader
```sh
$ java -cp minio-8.4.2-all.jar:. FileUploader
$ java -cp minio-8.4.3-all.jar:. FileUploader
'/home/user/Photos/asiaphotos.zip' is successfully uploaded as object 'asiaphotos-2015.zip' to bucket 'asiatrip'.
$ mc ls play/asiatrip/