Last active
August 29, 2015 14:23
-
-
Save olih/796d116b2852a1a0ea50 to your computer and use it in GitHub Desktop.
A few basic tools to install by default
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
#!/bin/bash | |
sudo yum install -y epel-release | |
sudo yum install -y nano | |
sudo yum install -y git | |
#Install Amazon Client | |
curl -O http://peak.telecommunity.com/dist/ez_setup.py | |
sudo python ez_setup.py | |
#Install pip | |
sudo easy_install pip | |
#Install aws cli | |
sudo pip install awscli | |
# Install Docker | |
sudo yum install -y jq | |
sudo yum install -y docker |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment