-
-
Save mims92/f98ba2cf2e62cb078d02f441a6e94b66 to your computer and use it in GitHub Desktop.
Linux - AWSCLI - aws cli with python3.6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Requirement | |
# - https://gist.github.com/mims92/83b911783c2a23377c3f7dc9d1fe38b9 | |
#-------- | |
# Installation | |
# - Create the exectuable file under your PATH | |
#-------- | |
# Files are being mounted in /app inside the container | |
#!/bin/bash | |
docker run \ | |
--rm \ | |
-v "$(pwd):/app" \ | |
-v "/root/.aws/":"/root/.aws" \ | |
python-aws \ | |
aws $@ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment