Expected behavior
Running command on the host, should download files from Amazon S3
Actual behavior
Errors with fatal error: Unable to locate credentials
Information
Docker version 17.06.2-ee-6, build e75fdb8
running on Amazon EC2.
aws s3 cp
is working fine, but if I create a transparent network, it then stops working.
Steps to reproduce the behavior
- On the host, run
aws s3 cp s3://my-s3-bucket/my-file .
- File is downloaded correctly
- Run
docker network create -d transparent tlan
(orl2bridge
) - Run same aws command
fatal error: Unable to locate credentials
- Run
docker network rm [networkId]
- When the transparent network is removed, the
cp
command runs fine again.