azinchen/minio
Minio server Docker image. Always up-to-date! Works everywhere!
100K+
Minio server Docker image. Always up-to-date! Works everywhere!
Minio is an OSS project offering a "high performance distributed object storage server", with fabulous features like an S3-compliant API, excellent documentation, and other great features out-of-the-box. It works on multiple platforms.
However, there's currently no officially maintained Docker image compatible with architectures other than amd64
.
The purpose of this Docker image is to always get the latest release version of Minio server even if this image has been created some time ago. Forget about outdated version of Minio server, just restart/recreate the container, and the newest release version of Minio server will be downloaded automatically.
Right now these Docker images of Minio server are compatible with arm64
, armhf
/armv7
, ppc64le
, and amd64
architectures.
You can run the following command to stand up a standalone instance of Minio Server on Docker:
docker run \
-v path_to_data:/data \
-e MINIO_ACCESS_KEY=access_key \
-e MINIO_SECRET_KEY=secret_key \
-p 9000:9000 \
azinchen/minio
Just follow up the official documentation.
If you have any problems with or questions about this image, please contact me through a GitHub issue or email.
docker pull azinchen/minio