bridge-local-dev/minio/bootstrap.sh

18 lines
313 B
Bash
Raw Permalink Normal View History

2018-06-24 20:13:31 +00:00
#!/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 &