logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt
How to install minio/minio. Official installation instructions. Project installation guide. Framework or library installation. Build installation instructions. How to setup and install from GitHub. Installation steps and setup instructions. Official docs and installation instructions GitHub.

minio/minio Installation Guide

How to install minio/minio. Official project installation instructions and setup guide.

Automated Install (Recommended)

Quick installation instructions for minio/minio. This is the fastest way to complete project installation and setup.

Install via curl

curl -fsSL https://hexmos.com/ipm-install | bash && 
ipm i minio/minio
or

Install via npx

npx @hexmos/ipm i minio/minio

Prerequisites

Golang

language

Version: go1.24

Docker

system_tool

For building and running MinIO containers.

Git

system_tool

For cloning the MinIO repository.

Manual Installation Methods

Manual installation instructions. How to install from GitHub source.

Source-Only Distribution

go install github.com/minio/minio@latest

docker build -t myminio:minio . 

docker run -p 9000:9000 -p 9001:9001 myminio:minio server /tmp/minio --console-address :9001

Docker Image

docker run -p 9000:9000 -p 9001:9001 myminio:minio server /tmp/minio --console-address :9001

MinIO Client `mc`

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

mc admin info

mc mb data

mc cp ~/Downloads/mydata data/

mc ls data/

Go Installation

go install github.com/minio/minio@latest

Post Installation Steps

  • Start the MinIO server using the command: `minio server PATH` (replace `PATH` with your desired folder on your local filesystem). This will start the server and make it accessible at http://127.0.0.1:9000.
  • Access the MinIO Console by navigating to http://127.0.0.1:9000 in your web browser.
  • Test the connection using the `mc` command-line tool: `mc alias set local http://localhost:9000 minioadmin minioadmin` and then run `mc admin info`. This will validate the server's status and provide information about it.
  • For more detailed instructions on using the MinIO Client, refer to the [MinIO Client Quickstart Guide](https://docs.min.io/community/minio-object-store/reference/minio-mc.html).