This Dockerfile installs Minio on your ARM64-Plarform (e.g. Odroid C2)
Please visit the Minio Website for more details https://minio.io
Minio is an object storage server released under Apache License v2.0. It is compatible with Amazon S3 cloud storage service. It is best suited for storing unstructured data such as photos, videos, log files, backups and container / VM images. Size of an object can range from a few KBs to a maximum of 5TB.
Minio server is light enough to be bundled with the application stack, similar to NodeJS, Redis and MySQL.
$ docker build -t minio-arm64 .
Or you can pull it from hub.docker.io
$ docker pull andrejzirko/minio-arm64
$ docker run -p 9000:9000 --name minio-arm64 -v /tmp/minio/export:/export -v /tmp/minio/config:/root/.minio andrejzirko/minio-arm64 server /export
A more detailed description can be found here https://docs.minio.io/docs/minio-docker-quickstart-guide
Distributed Minio on Docker has not been tested
GitHub Repository - https://github.com/andrej-zirko/minio-arm64
Docker Hub Repository - https://hub.docker.com/r/andrejzirko/minio-arm64