Last active
December 31, 2021 00:50
-
-
Save leejsinclair/a97ee56155df0760bb36 to your computer and use it in GitHub Desktop.
Ubuntu 14 docker setup #linux #docker
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
# 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