Docker Installation (Ubuntu)

Install Docker Engine on Ubuntu Server.
Ubuntu Server ISO: http://ubuntu.com/download/server
Website used for installation guide: credibleDEV

Update System

sudo apt update 
sudo apt upgrade

Install Required Packages

curl -fsSL https://get.docker.com -o get-docker.sh

Install Docker

sudo sh get-docker.sh

Verify Installation

sudo docker run hello-world

Enable Docker at Boot

sudo systemctl enable docker