Using MinIO Client
Common usecase
List all of containers
$ ./mc ls s3
Upload an object into a container
$ ./mc cp myobject.txt s3/bucket-1
Create a container
$ ./mc mb bucket_name
List all of objects
$ ./mc ls cos/testbucket1
Delete an object
$ ./mc rm cos/my_test_bucket/cp_from_minio.txt
Copy an object
$ ./mc cp cos/testbucket1/mynewfile1.txt cos/my_test_bucket/cp_from_minio.txt
Advanced usecase
Create URL to download object
$ ./mc share download servername/pathtofile
Create URL to upload object
$ ./mc share upload servername/pathtofile
Last updated