Nightly builds of Minio's mc
for cross-platform
architectures (armv7, aarch64, amd64).
$ docker run --rm -it jessestuart/mc
NAME:
mc - Minio Client for cloud storage and filesystems.
USAGE:
mc [FLAGS] COMMAND [COMMAND FLAGS | -h] [ARGUMENTS...]
COMMANDS:
ls List files and folders.
mb Make a bucket or a folder.
cat Display file and object contents.
pipe Redirect STDIN to an object or file or STDOUT.
share Generate URL for sharing.
cp Copy files and objects.
[...]
VERSION:
2018-05-28T05:40:55Z
Mount your local credentials directory, and you'll get a fully portable (cross
platform) and containerized S3 client. By default, the client looks for
configuration files at /root/.mc
:
# Assuming I have an "aws" host previously configured with mc:
$ docker run --rm -it -v ~/.mc:/home/.mc jessestuart/mc ls aws
[2018-02-17 19:18:35 UTC] 0B some-bucket/
[2018-03-16 04:34:54 UTC] 0B another-bucket/
[...]