Skip to content

Instantly share code, notes, and snippets.

@igez
Last active November 1, 2016 05:55
Show Gist options
  • Save igez/87db029dae519279b700f491e25eea8b to your computer and use it in GitHub Desktop.
Save igez/87db029dae519279b700f491e25eea8b to your computer and use it in GitHub Desktop.
Install Docker Ubuntu 14.04
#!/bin/bash
sudo apt-get update && sudo apt-get -y install wget nano
wget -qO- https://get.docker.com/ | sh
sudo usermod -aG docker $(whoami)
# install docker compose
sudo apt-get -y install python-pip
sudo pip install docker-compose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment