Last active
December 13, 2019 14:45
-
-
Save bchewy/be417b1ddb3edd71cf76dc24a0172af8 to your computer and use it in GitHub Desktop.
Installing Docker on Ubuntu 19.x
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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