Not sure if more details are required, but I'm running a docker container to execute boto3 commands and I have already been using them outside of the container. So upon mapping them to the container as such:
docker run --name store -v $HOME/.aws:/root/.aws my-store python ./mystore/manage.py test store/ --pattern="tests_*.py"
you would think it will just work but it threw:
botocore.exceptions.NoRegionError: You must specify a region.
Why is it not using ~/.aws/config
?