Skip to content

Instantly share code, notes, and snippets.

@bchewy
Last active December 13, 2019 14:45
Show Gist options
  • Save bchewy/be417b1ddb3edd71cf76dc24a0172af8 to your computer and use it in GitHub Desktop.
Save bchewy/be417b1ddb3edd71cf76dc24a0172af8 to your computer and use it in GitHub Desktop.
Installing Docker on Ubuntu 19.x
# Simple script to install docker - you need to check some values to enable this to work
sudo apt update
sudo apt remove docker docker-engine docker.io
sudo apt install docker.io # return Y to install
sudo systemctl start docker
sudo systemctl enable docker
docker --version # Checks what docker version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment