On Windows
Install Kitematic - https://kitematic.com/
- Follow installation procedure
- Open the Docker Machine Quick Terminal
https://github.com/fstab/docker-aws-cli
Add the IAM Roles ID and Secret Key as prompted by running:
$ aws configure
http://docs.aws.amazon.com/cli/latest/userguide/cli-ec2-keypairs.html
$ aws ec2 create-key-pair --key-name MyKeyPair --query 'KeyMaterial' --output text > MyKeyPair.pem
$ aws ec2 run-instances --image-id ami-ed82e39e --count 1 --instance-type t1.micro --key-name MyKeyPair --security-groups security-group-name
$ aws ec2 create-tags --resources i-xxxxxxxx --tags Key=Name,Value=MyInstance