# MinIO server CLI options
# For supported CLI options see:
#   https://min.io/docs/minio/linux/reference/minio-server/minio-server.html#command-minio.server
MINIO_OPTS=

# MINIO_ROOT_USER and MINIO_ROOT_PASSWORD sets the root account for the MinIO server.
# This user has unrestricted permissions to perform S3 and administrative API operations on any resource in the deployment.
# Omit to use the default values 'minioadmin:minioadmin'.
# MinIO recommends setting non-default values as a best practice, regardless of environment

MINIO_ROOT_USER=minioadmin
MINIO_ROOT_PASSWORD=minioadmin

# MINIO_VOLUMES sets the storage volume or path to use for the MinIO server.

MINIO_VOLUMES="/var/lib/minio"

# MINIO_SERVER_URL sets the hostname of the local machine for use with the MinIO Server
# MinIO assumes your network control plane can correctly resolve this hostname to the local machine

# For other supported environment variables see:
#   https://min.io/docs/minio/linux/reference/minio-server/minio-server.html#environment-variables
