Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 443 Bytes

installation-on-ubuntu.md

File metadata and controls

10 lines (9 loc) · 443 Bytes

How to install Docker on Ubuntu

sudo apt update
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 focal stable"
sudo apt update
sudo apt install docker-ce
sudo systemctl status docker
docker --version