Installing Docker on Ubuntu-based Linux distributions: Linux Mint, Zorin, Pop OS, etc. is simple! Installing Docker from CLI Docker is available in the default repositories of apt. Install via: 1sudo apt install docker.ioAdd permissions to the docker group by adding the current user: 1sudo usermod -a -G docker $(whoami)Verify that everything worked: 1docker psOutput: 1CONTAINER ID IMAGE COMMAND CREATEDTroubleshooting If the following error occurs after docker ps: 1Got permission denied while ...