Skip to content

Instantly share code, notes, and snippets.

@retrohacker
Last active August 29, 2015 14:08
Show Gist options
  • Save retrohacker/e7f2259510f30077f8bb to your computer and use it in GitHub Desktop.
Save retrohacker/e7f2259510f30077f8bb to your computer and use it in GitHub Desktop.
DO Setup
# 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
@Guitlle
Copy link

Guitlle commented Aug 19, 2015

root@myvps:~# curl -sSL https://get.docker.com/ | sh
Error: you are not using a 64bit platform.
Docker currently only supports 64bit platforms.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment