Skip to content

Instantly share code, notes, and snippets.

@mims92
Last active January 4, 2019 14:26
Show Gist options
  • Save mims92/f98ba2cf2e62cb078d02f441a6e94b66 to your computer and use it in GitHub Desktop.
Save mims92/f98ba2cf2e62cb078d02f441a6e94b66 to your computer and use it in GitHub Desktop.
Linux - AWSCLI - aws cli with python3.6
# 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