How to install Docker in Ubuntu 20.04 LTS | antotechniques
These are the commands userd in Ubuntu 20.04 LTS
sudo apt Update
sudo apt install docker.io
systemctl enable –now docker
systemctl status docker
sudo groupadd docker
sudo usermod -aG docker username
docker -v
docker run hello-world
ubuntu