Installing Docker - KSU-CS-Software-Engineering/HSPC GitHub Wiki

Docker is a container used to house frameworks or applications that are not supported in an environment.
We used Docker to house an MSSQL Database because we had the most experience with MSSQL.

Run the following commands to install Docker:

sudo apt update
sudo apt install curl
sudo curl -sSL https://get.docker.com/ | sh

Alternative Installation Method
sudo apt install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic test"
sudo apt update
sudo apt install docker-ce

For more information about Docker, please refer to the official documentation.