15 lines
270 B
Bash
Executable file
15 lines
270 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Simple wrapper for Minio
|
|
#
|
|
# (torn, 2017-01-26)
|
|
|
|
bin="/home/cable/minio/minio"
|
|
conf="/home/cable/minio/conf/"
|
|
buckets="/home/cable/minio/buckets/"
|
|
addr="127.0.0.1:9000"
|
|
|
|
export MINIO_BROWSER=off
|
|
|
|
$bin server -C "$conf" --address "$addr" --quiet "$buckets"
|
|
|