Skip to content

Instantly share code, notes, and snippets.

@igricart
Last active October 14, 2020 10:59
Show Gist options
  • Select an option

  • Save igricart/2fa80cb288ed0c633462d031a7be30c0 to your computer and use it in GitHub Desktop.

Select an option

Save igricart/2fa80cb288ed0c633462d031a7be30c0 to your computer and use it in GitHub Desktop.
Install docker and set the system to no use it as sudo
#!/bin/bash
sudo apt update
sudo apt install docker.io
sudo usermod -aG docker ${USER}
su - ${USER}
id -nG
docker version
docker run hello-world
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment