#!/usr/bin/env bash # # Make a directory for the minio binary # mkdir minio cd minio # # Download and run the minio binary as specified at: # https://www.minio.io/downloads.html#download-server-linux-x64 # wget https://dl.minio.io/server/minio/release/linux-amd64/minio chmod +x minio ./minio server ./data &