12345678910111213141516171819 |
- # Admin account credentials
- MINIO_ROOT_USER=30RandomAlphaNumericCharacters
- MINIO_ROOT_PASSWORD=AnotherSetOf30RandomCharacters
- # Directory to store data
- # !! This directory has to be writeable by uid/gid 1000
- # sudo chown 1000:1000 ...
- # MINIO_DATA=/srv/magnetic-backup/minio
- MINIO_DATA=./data
- # IP / Port Mapping for s3
- # IP_ADDRESS=192.168.10.10:9000:9000
- PORT_MAPPING=9000:9090
- # Path to certificates, expected filenames:
- # - fullchain.pem
- # - key.pem
- CERT_PATH=/opt/docker/reverse-proxy/data/certs/
- HOSTNAME=minio.example.com
|