#!/bin/bash # Ensuring our system packages are up to date apt update && apt upgrade -y # Install packages to allow apt to use repository over HTTPs apt install apt-transport-https ca-certificates software-properties-common git # Install Docker curl -fsSL get.docker.com -o get-docker.sh && sh get-docker.sh