The Docker official team provides PPA for installing Docker on Ubuntu 20.04 using PPA. You just need to configure Docker PPA to your system before installing Docker on Ubuntu system. This tutorial will help you to install Docker on Ubuntu 20.04 LTS Focal Fossa systems.

Prerequisite

Login to your Ubuntu 20.04 system with sudo privileged user. Then run the following commands to install required packages.

Step 1 – Installing Docker on Ubuntu

First of all, import the GPG key to your system to verify packages signature before installing them. To import key run the below command on terminal. After that add the Docker repository on your Ubuntu system which contains Docker packages including its dependencies. You must have to enable this repository to install Docker on Ubuntu. Your system is now ready for Docker installation. Next, execute the following commands to upgrade apt index and then install Docker on Ubuntu 20.04 Linux system. After successful installation of Docker community edition, the service will start automatically, Use below command to verify service status. Your system is now ready for running Docker containers. Use our Docker Tutorial for Beginners to working with Docker.

Step 2 – Manage Docker Service

As usual Docker service is also managed under the Systemd daemon. You can use systemctl commands to stop, start or view status of Docker service. Run the below command to view service status: Use below command to stop, start or restart Docker service:

Step 3 – Run Docker Hello World

You have successfully installed Docker on Ubuntu system. The Docker engine service is also running fine. Next, run a hello world example to verify that everything is fine. To run Docker hello world example, open a terminal and type: You will see the results like below. It means Docker is properly configured on your system.

Step 4 – Install Docker Compose

Download the latest version of Docker compose tool from Github. Use the below commands to download and install Docker compose 1.26.0. Before installing make sure compatibility with your docker version.

Conclusion

All done, you have successfully installed Docker on Ubuntu 20.04 system using PPA. Additionally, you also have configured Docker-compose on your system.

How to Install Docker on Ubuntu 20 04   TecAdmin - 38