bridge-local-dev/minio/bootstrap.sh
Martin Donnelly 78a95206a3 init
2018-06-24 21:13:31 +01:00

18 lines
313 B
Bash

#!/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 &