Created
July 18, 2015 19:37
-
-
Save tshauck/e88af3329765bb54be45 to your computer and use it in GitHub Desktop.
docker-machine spot
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
docker-machine create \ | |
--driver amazonec2 \ | |
--amazonec2-access-key $ACCESS_KEY \ | |
--amazonec2-secret-key $SECRET_KEY \ | |
--amazonec2-vpc-id $VPC \ | |
--amazonec2-security-group $SECURITY_GROUP \ | |
--amazonec2-instance-type "m4.2xlarge" \ | |
--amazonec2-root-size 20 \ | |
--amazonec2-request-spot-instance \ | |
--amazonec2-spot-price 0.20 \ | |
analysis |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cool!