Skip to content

Instantly share code, notes, and snippets.

@pjan
Created September 13, 2014 06:13
Show Gist options
  • Save pjan/706c1a4130fbd66ad614 to your computer and use it in GitHub Desktop.
Save pjan/706c1a4130fbd66ad614 to your computer and use it in GitHub Desktop.
Install Docker with sudoless docker commands
# 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