azure docs remove default chunk size example (#10406)

This commit is contained in:
Krishna Srinivas 2020-09-03 01:31:56 -07:00 committed by GitHub
parent 631d55aa22
commit c51229493b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,6 @@ MinIO Gateway adds Amazon S3 compatibility to Microsoft Azure Blob Storage.
docker run -p 9000:9000 --name azure-s3 \ docker run -p 9000:9000 --name azure-s3 \
-e "MINIO_ACCESS_KEY=azurestorageaccountname" \ -e "MINIO_ACCESS_KEY=azurestorageaccountname" \
-e "MINIO_SECRET_KEY=azurestorageaccountkey" \ -e "MINIO_SECRET_KEY=azurestorageaccountkey" \
-e "MINIO_AZURE_CHUNK_SIZE_MB=0.25" \
minio/minio gateway azure minio/minio gateway azure
``` ```
@ -15,7 +14,6 @@ docker run -p 9000:9000 --name azure-s3 \
``` ```
export MINIO_ACCESS_KEY=azureaccountname export MINIO_ACCESS_KEY=azureaccountname
export MINIO_SECRET_KEY=azureaccountkey export MINIO_SECRET_KEY=azureaccountkey
export MINIO_AZURE_CHUNK_SIZE_MB=0.25
minio gateway azure minio gateway azure
``` ```
## Test using MinIO Browser ## Test using MinIO Browser