Skip to content

How to install Docker CE on Ubuntu 20.04

Adam Radocz edited this page Aug 2, 2020 · 1 revision

A single copy-paste command to install Decker CE on Ubuntu 20.04. For more details check out the Docker Docs.

sudo apt update && \
sudo apt install apt-transport-https ca-certificates curl gnupg-agent software-properties-common -y && \
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 $(lsb_release -cs) stable" && \
sudo apt update && \
sudo apt install docker-ce -y
Clone this wiki locally