Getting Started With Docker
This post is to help in installing docker engine and docker-compose on almost any linux distro (with apt of course). So, without further ado, lets get cracking! Deleting any existing installs Run the command below: 1 sudo apt-get remove docker docker.io containerd runc Setting up your OS Set up the repository Run the commands to install prerequisites. 1 2 3 4 5 6 7 8 sudo apt-get update sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg-agent \ software-properties-common ...