Skip to content

Instantly share code, notes, and snippets.

@tonkatsu7
Created July 28, 2018 06:21
Show Gist options
  • Save tonkatsu7/cc0aee304d133422a250a5ea9485f84b to your computer and use it in GitHub Desktop.
Save tonkatsu7/cc0aee304d133422a250a5ea9485f84b to your computer and use it in GitHub Desktop.
Install docker on Ubuntu and add current user to docker group
sudo apt install docker.io
sudo systemctl status docker
sudo usermod -aG docker ${USER}
su - ${USER}
id -nG
docker -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment