# Set the volumes MinIO uses at startup# The command uses MinIO expansion notation {x...y} to denote a# sequential series.## The following specifies a single host with 4 drives at the specified location## The command includes the port that the MinIO server listens on# (default 9000).# If you run without TLS, change https -> httpMINIO_VOLUMES="https://minio1.example.net:9000/mnt/drive{1...4}/minio"# Set all MinIO server command-line options## The following explicitly sets the MinIO Console listen address to# port 9001 on all network interfaces.# The default behavior is dynamic port selection.MINIO_OPTS="--console-address :9001 --certs-dir /opt/minio/certs"# Set the root username.# This user has unrestricted permissions to perform S3 and# administrative API operations on any resource in the deployment.## Defer to your organizations requirements for superadmin user name.MINIO_ROOT_USER=minioadmin
# Set the root password## Use a long, random, unique string that meets your organizations# requirements for passwords.MINIO_ROOT_PASSWORD=minio-secret-key-CHANGE-ME
# Set the volume MinIO uses at startup## The following specifies the drive or folder pathMINIO_VOLUMES="/mnt/drive1/minio"# Set all MinIO server command-line options## The following explicitly sets the MinIO Console listen address to# port 9001 on all network interfaces.# The default behavior is dynamic port selection.MINIO_OPTS="--console-address :9001 --certs-dir /opt/minio/certs"# Set the root username.# This user has unrestricted permissions to perform S3 and# administrative API operations on any resource in the deployment.## Defer to your organizations requirements for superadmin user name.MINIO_ROOT_USER=minioadmin
# Set the root password## Use a long, random, unique string that meets your organizations# requirements for passwords.MINIO_ROOT_PASSWORD=minio-secret-key-CHANGE-ME