A Docker image for running Boto3 scripts.
docker run -it krish143434/boto3:1.8 python
docker run -v $PWD/test:/tmp ombu/boto3:1.8 python test.py
To run a task that talks to AWS you have to export your AWS credentais to the environment:
export AWS_DEFAULT_REGION=us-west-2
export AWS_ACCESS_KEY_ID=...
export AWS_SECRET_ACCESS_KEY=...
docker run -v $PWD/test:/tmp \
-e AWS_ACCESS_KEY_ID -e AWS_SECRET_ACCESS_KEY -e AWS_DEFAULT_REGION krish143434/boto3:1.8 python test.py
Content type
Image
Digest
Size
182 MB
Last updated
about 6 years ago
docker pull krish143434/boto3