Skip to content

Instantly share code, notes, and snippets.

@leejsinclair
Last active December 31, 2021 00:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leejsinclair/a97ee56155df0760bb36 to your computer and use it in GitHub Desktop.
Save leejsinclair/a97ee56155df0760bb36 to your computer and use it in GitHub Desktop.
Ubuntu 14 docker setup #linux #docker
# 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"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment