Go to file
Ravind Kumar bde0d5a291
VulnCheck / Analysis (push) Waiting to run Details
Updating readme for MinIO docs (#21625)
2025-10-06 22:36:26 -07:00
.github
buildscripts
cmd fix: timeN function return final closure not be called (#21615) 2025-09-30 23:06:01 -07:00
dockerscripts
docs Use new gofumpt (#21613) 2025-09-28 13:59:21 -07:00
helm/minio Update docs links throughout (#21513) 2025-08-12 11:20:36 -07:00
helm-releases
internal Use new gofumpt (#21613) 2025-09-28 13:59:21 -07:00
.dockerignore
.gitignore
.golangci.yml
.mailmap
.typos.toml
CNAME
COMPLIANCE.md
CONTRIBUTING.md
CREDITS
Dockerfile
Dockerfile.cicd
Dockerfile.hotfix
Dockerfile.release
Dockerfile.release.old_cpu
Dockerfile.scratch
LICENSE
Makefile
NOTICE
PULL_REQUESTS_ETIQUETTE.md
README.md Updating readme for MinIO docs (#21625) 2025-10-06 22:36:26 -07:00
SECURITY.md
VULNERABILITY_REPORT.md
_config.yml
code_of_conduct.md
docker-buildx.sh
go.mod Use new gofumpt (#21613) 2025-09-28 13:59:21 -07:00
go.sum Use new gofumpt (#21613) 2025-09-28 13:59:21 -07:00
helm-reindex.sh
index.yaml
main.go
update-credits.sh

README.md

MinIO Quickstart Guide

Slack Docker Pulls license

MinIO

MinIO is a high-performance, S3-compatible object storage solution released under the GNU AGPL v3.0 license. Designed for speed and scalability, it powers AI/ML, analytics, and data-intensive workloads with industry-leading performance.

🔹 S3 API Compatible Seamless integration with existing S3 tools 🔹 Built for AI & Analytics Optimized for large-scale data pipelines 🔹 High Performance Ideal for demanding storage workloads.

This README provides instructions for building MinIO from source and deploying onto baremetal hardware. For more complete documentation, see the MinIO documentation website

MinIO is Open Source Software

We designed MinIO as Open Source software for the Open Source software community. We encourage the community to remix, redesign, and reshare MinIO under the terms of the AGPLv3 license.

All usage of MinIO in your application stack requires validation against AGPLv3 obligations, which include but are not limited to the release of modified code to the community from which you have benefited. Any commercial/proprietary usage of the AGPLv3 software, including repackaging or reselling services/features, is done at your own risk.

The AGPLv3 provides no obligation by any party to support, maintain, or warranty the original or any modified work. All support is provided on a best-effort basis through Github and our Slack channel, and any member of the community is welcome to contribute and assist others in their usage of the software.

MinIO AIStor includes enterprise-grade support and licensing for workloads which require commercial or proprietary usage and production-level SLA/SLO-backed support. For more information, reach out for a quote.

Legacy Releases

MinIO has no planned or scheduled releases for this repository. While a new release may be cut at any time, there is no timeline for when a subsequent release may occur. All existing releases remain accessible through Github or at https://dl.min.io/server/minio/release/ .

Install from Source

Use the following commands to compile and run a standalone MinIO server from source. If you do not have a working Golang environment, please follow How to install Golang. Minimum version required is go1.24

go install github.com/minio/minio@latest

You can alternatively run go build and use the GOOS and GOARCH environment variables to control the OS and architecture target. For example:

env GOOS=linux GOARCh=arm64 go build

Start MinIO by running minio server PATH where PATH is any empty folder on your local filesystem.

The MinIO deployment starts using default root credentials minioadmin:minioadmin. You can test the deployment using the MinIO Console, an embedded web-based object browser built into MinIO Server. Point a web browser running on the host machine to http://127.0.0.1:9000 and log in with the root credentials. You can use the Browser to create buckets, upload objects, and browse the contents of the MinIO server.

You can also connect using any S3-compatible tool, such as the MinIO Client mc commandline tool:

mc alias set local http://localhost:9000 minioadmin minioadmin
mc admin info local

See Test using MinIO Client mc for more information on using the mc commandline tool. For application developers, see https://docs.min.io/community/minio-object-store/developers/minio-drivers.html to view MinIO SDKs for supported languages.

[!NOTE] Production environments using compiled-from-source MinIO binaries do so at their own risk. The AGPLv3 license provides no warranties nor liabilites for any such usage.

Test MinIO Connectivity

Test using MinIO Console

MinIO Server comes with an embedded web based object browser. Point your web browser to http://127.0.0.1:9000 to ensure your server has started successfully.

[!NOTE] MinIO runs console on random port by default, if you wish to choose a specific port use --console-address to pick a specific interface and port.

Test using MinIO Client mc

mc provides a modern alternative to UNIX commands like ls, cat, cp, mirror, diff etc. It supports filesystems and Amazon S3 compatible cloud storage services.

The following commands set a local alias, validate the server information, create a bucket, copy data to that bucket, and list the contents of the bucket.

mc alias set local http://localhost:9000 minioadmin minioadmin
mc admin info
mc mb data
mc cp ~/Downloads/mydata data/
mc ls data/

Follow the MinIO Client Quickstart Guide for further instructions.

Explore Further

Contribute to MinIO Project

Please follow MinIO Contributor's Guide for guidance on making new contributions to the repository.

License