minio-wrapper.sh 270 B

123456789101112131415
  1. #!/bin/sh
  2. # Simple wrapper for Minio
  3. #
  4. # (torn, 2017-01-26)
  5. bin="/home/cable/minio/minio"
  6. conf="/home/cable/minio/conf/"
  7. buckets="/home/cable/minio/buckets/"
  8. addr="127.0.0.1:9000"
  9. export MINIO_BROWSER=off
  10. $bin server -C "$conf" --address "$addr" --quiet "$buckets"