Created
September 13, 2014 06:13
-
-
Save pjan/706c1a4130fbd66ad614 to your computer and use it in GitHub Desktop.
Install Docker with sudoless docker commands
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
# install docker (bootstrap) | |
curl -sSL https://get.docker.io/ubuntu/ | sudo sh | |
# add current user to docker group | |
sudo gpasswd -a ${USER} docker | |
# restart the docker daemon | |
sudo service docker restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment