leejsinclair
8/16/2015 - 10:29 AM

Ubuntu 14 docker setup

Ubuntu 14 docker setup

# Get curl
sudo apt-get install curl

# Install docker
curl -sSL https://get.docker.com/ | sh

# Add current user to docker group
sudo usermod -aG docker $USER

# Need to logout and back in again
echo "!! Important"
echo "You need to logout and back in again to use docker"