Skip to content

Instantly share code, notes, and snippets.

@kimpepper
Created August 16, 2021 00:13
Show Gist options
  • Save kimpepper/a9559f5bade23eae57894a072f72d24e to your computer and use it in GitHub Desktop.
Save kimpepper/a9559f5bade23eae57894a072f72d24e to your computer and use it in GitHub Desktop.
Install docker.io on Ubuntu desktop

Install docker.io on Ubuntu desktop

Install the docker.io package.

sudo apt install docker.io

You need to add your user to the docker group.

sudo usermod -aG docker $USER

Reboot for changes to take effect.

Test without root:

docker run hello-world
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment