Skip to content

Instantly share code, notes, and snippets.

@felipecruz91
Last active January 7, 2020 15:39
Show Gist options
  • Save felipecruz91/92bed26d45a6a2134dbaeeac105831cf to your computer and use it in GitHub Desktop.
Save felipecruz91/92bed26d45a6a2134dbaeeac105831cf to your computer and use it in GitHub Desktop.
docker-installation

docker installation

$ sudo apt-get update
$ curl -fsSL https://get.docker.com -o get-docker.sh
$ sudo sh get-docker.sh

If you would like to use Docker as a non-root user, you should now consider adding your user to the "docker" group with something like:

$ sudo usermod -aG docker your-user

Remember that you will have to log out and back in for this to take effect!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment