Last active
August 29, 2015 14:08
-
-
Save retrohacker/e7f2259510f30077f8bb to your computer and use it in GitHub Desktop.
DO Setup
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
# Install Node.js | |
curl -sL https://deb.nodesource.com/setup | sudo bash - | |
apt-get install -y nodejs gcc g++ make | |
# Install Docker | |
echo "deb http://http.debian.net/debian wheezy-backports main" >> /etc/apt/sources.list | |
apt-get -y update | |
apt-get install -y -t wheezy-backports linux-image-amd64 | |
curl -sSL https://get.docker.com/ | sh | |
# Setup vim | |
git clone https://github.com/wblankenship/vim.git ~/.vim | |
ln ~/.vim/.vimrc ~/.vimrc | |
apt-get install -y vim | |
# Setup zsh | |
git clone --recursive https://github.com/wblankenship/zsh.git ~/.zsh | |
ln ~/.zsh/.zshrc ~/.zshrc | |
apt-get install -y zsh | |
chsh -s $(which zsh) root |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
root@myvps:~# curl -sSL https://get.docker.com/ | sh
Error: you are not using a 64bit platform.
Docker currently only supports 64bit platforms.