Categories: Ubuntu

How to Install Docker on Ubuntu 22.04

Docker is a software platform for developing applications based on Containers (lightweight execution environments) that share the operating system kernel but in isolation. In Unix and Linux-based systems, Containers have been utilized for some time, however, when Docker was deployed in the market in 2013, it became easier for the developers to bundle their applications in such a way that it is created once and can be executed anywhere.

This write-up will discuss the procedure to install Docker on Ubuntu 22.04. So, let’s start!

How to install Docker on Ubuntu 22.04

You must follow the below-given step-by-step instructions for installing Docker on Ubuntu 22.04.

Sponsored

Step 1: Update system repositories
Press “CTRL+ALT+T” to open the terminal of your Ubuntu 22.04 and run the below-given commands to update system repositories:

$ sudo apt update

$ sudo apt upgrade

Step 2: Install required dependencies
After updating the system packages, next step is to install required dependencies for Docker:

$ sudo apt install lsb-release ca-certificates apt-transport-https software-properties-common -y

Step 3: Adding Docker repository to system sources
When Docker repository is added to the system sources, it makes the Docker installation easier and provides faster updates.

To add the Docker repository to the system sources, first, import the Docker GPG key required for connecting to the Docker repository:

$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg –dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg

Then, execute the following command for adding the Docker repository to your Ubuntu 22.04 system sources list:

$ echo “deb [arch=$(dpkg –print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable” | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

Step 4: Update system packages
After adding Docker repository to the system sources, again update the system packages:

$ sudo apt update

Step 5: Install Docker on Ubuntu 22.04
If you have carefully followed the previously given steps, then at this point, your Ubuntu 22.04 system is all ready for the Docker installation:

$ sudo apt install docker-ce

Note that we are utilizing the “docker-ce” package instead of “docker-ie” as it is supported by the official Docker repository:

Sponsored

Enter “y” to permit the Docker installation to continue:

The below-given error-free output indicates that Docker is successfully installed on our Ubuntu 22.04 system:

Step 6: Verify Docker status
Now, execute the below-given “systemctl” command to verify if the Docker is currently active or not on your system:

$ sudo systemctl status docker

How to use Docker on Ubuntu 22.04

After installing Docker on Ubuntu 22.04, you can use it to download and run any test container. For instance, the following will download the “hello-world” Docker test container:

$ sudo docker run hello-world

Then, execute the “docker ps” command with the “-a” command to display the information related to running Docker containers:

$ sudo docker ps -a

As you can see in the below-given output, the “hello-world” container is added successfully:

How to uninstall Docker from Ubuntu 22.04

Want to uninstall Docker from your Ubuntu 22.04 system? If yes, then write out the following command in the terminal:

$ sudo apt-get purge docker-ce

We have compiled the simplest method to install and use Docker on Ubuntu 22.04 system.

Conclusion

For the installation of Docker on Ubuntu 22.04, first, update the system repositories with the “$ sudo apt update” command and install the required dependencies. After that, import the Docker GPG key and add its repository to the system sources. Then, install Docker with the help “$ sudo apt install docker-ce” command. This write-up discussed the method to install Docker on Ubuntu 22.04.

Ubuntu Server Admin

Recent Posts

Ubuntu 25.10 Beta Release is Available to Download

Ubuntu 25.10, code-name Questing Quokka, is now available for Beta testing! The developer team announced…

2 days ago

How to build an awesome cloud gaming platform with Anbox Cloud

Why cloud gaming? Cloud gaming is changing the way we play. Instead of buying expensive…

3 days ago

Dolphin Emulator 2509 now Emulates Cars 2 & Disney Infinity Smoothly

Dolphin, the free open-source GameCube and Wii game emulator, released new 2509 version today after…

3 days ago

GNOME 49 Officially Released with New Video Player & Document Viewer

GNOME developer team finally announced the 49 release of this popular Linux Desktop environment! If…

3 days ago

Ubuntu 25.10 (Questing Quokka) Beta released

The Ubuntu Release team is pleased to announce the Beta release of the Ubuntu 25.10…

3 days ago

Canonical achieves IEC 62443-4-1 compliance in Industrial Automation and Control Systems

Canonical is proud to announce it has achieved compliance with IEC 62443-4-1 for cybersecurity in…

4 days ago