Last active
June 2, 2018 13:05
-
-
Save jonchurch/874eef44e397b53d9c6641b3a443ab6a to your computer and use it in GitHub Desktop.
Setup ec2
This file contains hidden or 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
| sudo yum update -y &&\ | |
| sudo yum install -y git zsh docker&&\ | |
| sudo service docker start &&\ | |
| sudo usermod -a -G docker ec2-user &&\ | |
| curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh &&\ | |
| chsh -s $(which zsh) &&\ | |
| git clone https://github.com/jonchurch/dot-files &&\ | |
| cp ./dot-files/{.vimrc, .zshrc} ./ &&\ | |
| vim +PluginInstall +qall &&\ | |
| echo "Logout and back in to let the docker permissions take" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment