fix: make azure gateway chunk size configurable (#9292)

This commit is contained in:
Boaz
2020-04-23 11:04:13 +02:00
committed by GitHub
parent cddb2714ef
commit ac5061df2c
3 changed files with 73 additions and 4 deletions

View File

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