Docker Installation on Ubuntu

Опубликовано: 16 Июль 2026
на канале: arman hossain
10
0

Install Docker on Ubuntu 20.04 LTS

follow this track

sudo apt install docker.io
docker --version
sudo systemctl status docker
if enable then :
sudo docker run hello-world
else:
sudo systemctl enable --now docker
check:
sudo systemctl status docker
then:
sudo docker run hello-world

happy coding :)