Skip to content

Instantly share code, notes, and snippets.

@swyngaard
Last active February 23, 2017 09:21
Show Gist options
  • Save swyngaard/71aadcd11f4bb0f488c7d91532d16735 to your computer and use it in GitHub Desktop.
Save swyngaard/71aadcd11f4bb0f488c7d91532d16735 to your computer and use it in GitHub Desktop.
Install Docker on Debian
Install docker:
$ sudo aptitude install docker.io
Add user to docker group to avoid using sudo:
$ sudo usermod -a -G docker $USER
Logout and back in again to enable the new group for the user.
References:
https://docs.docker.com/installation/debian/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment