Created
July 28, 2018 06:21
-
-
Save tonkatsu7/cc0aee304d133422a250a5ea9485f84b to your computer and use it in GitHub Desktop.
Install docker on Ubuntu and add current user to docker group
This file contains 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
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