Created
April 20, 2018 07:12
-
-
Save amritanshu-pandey/0ebbb1cd4d0540850c91d4eb165be9e1 to your computer and use it in GitHub Desktop.
My Docker-Workstation bootstrap script
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 | |
## Remove or edit this sample code as per your requirement | |
if [ -d "${HOME}/.ssh" ]; then | |
echo "Setting permission for \"${HOME}\"/.ssh" | |
chmod -R 700 "${HOME}"/.ssh | |
fi | |
pyenv install 3.6.5 | |
pyenv install 3.7.0b3 | |
nodenv install 9.11.1 | |
sed -i -e 's/robbyrussell/agnoster/g' ~/.zshrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment