I try to run minio in azure gateway mode against/with azurite. I started azurite blob storage emulator and can successfully communicate with the emulator over http://127.0.0.1:10000
. now I start minio in azure gateway mode like this:
docker run -p 9000:9000 --name azure-s3 \
-e "END_POINT=http://127.0.0.1:10000"
-e "MINIO_ACCESS_KEY=azurestorageaccountname" \
-e "MINIO_SECRET_KEY=azurestorageaccountkey" \
minio/minio gateway azure
and I get the following:
Created minio configuration file successfully at /root/.minio
You are running an older version of Minio released 1 week ago
Update: docker pull minio/minio:RELEASE.2018-05-25T19-49-13Z
Endpoint: http://172.17.0.3:9000 http://127.0.0.1:9000
AccessKey: azurestorageaccountname
SecretKey: azurestorageaccountkey
Browser Access:
http://172.17.0.3:9000 http://127.0.0.1:9000
Command-line Access: https://docs.minio.io/docs/minio-client-quickstart-guide
$ mc config host add myazure http://172.17.0.3:9000 azurestorageaccountname azurestorageaccountkey
Object API (Amazon S3 compatible):
Go: https://docs.minio.io/docs/golang-client-quickstart-guide
Java: https://docs.minio.io/docs/java-client-quickstart-guide
Python: https://docs.minio.io/docs/python-client-quickstart-guide
JavaScript: https://docs.minio.io/docs/javascript-client-quickstart-guide
.NET: https://docs.minio.io/docs/dotnet-client-quickstart-guide
If I now try create a bucket in the minio browser I get the following error: Put https://127.0.0.1:10000/azurestorageaccountname/test?restype=container: dial tcp 127.0.0.1:10000: connect: connection refused
I'm confused about that minio try a "https" call, I think that's the error. Any suggestions on that?