diff --git a/docs/gateway/s3.md b/docs/gateway/s3.md index bffae3925..5e0cfa6e8 100644 --- a/docs/gateway/s3.md +++ b/docs/gateway/s3.md @@ -33,7 +33,7 @@ As a prerequisite to run Minio S3 gateway on an AWS S3 compatible service, you n docker run -p 9000:9000 --name minio-s3 \ -e "MINIO_ACCESS_KEY=access_key" \ -e "MINIO_SECRET_KEY=secret_key" \ - minio/minio gateway s3 --address https://s3_compatible_service_endpoint:port + minio/minio gateway s3 https://s3_compatible_service_endpoint:port ``` ### Using Binary @@ -41,7 +41,7 @@ docker run -p 9000:9000 --name minio-s3 \ ``` export MINIO_ACCESS_KEY=access_key export MINIO_SECRET_KEY=secret_key -minio gateway s3 --address https://s3_compatible_service_endpoint:port +minio gateway s3 https://s3_compatible_service_endpoint:port ``` ## Minio Caching