Docker Installation on Ubuntu 24.04

This tutorial provides a step-by-step guide on installing Docker on Ubuntu 24.04, covering essential command. By following this guide, you'll be able to quickly set up Docker to create and manage containers, enabling efficient application deployment in isolated environments.

Docker Overview

Docker is a hugely popular containerization platform that enables developers to build and deploy applications inside containers. Containers are isolated environments that package an entire application alongside its dependencies, libraries, configuration files, and everything required to make it run, regardless of the computing environment. In this guide, we focus on how to install Docker on Ubuntu 24.04.

Step 1 – Update the System

The first step is to refresh the repositories. To do so, run the command:

sudo apt update

Step 2 – Install Dependencies

Some dependencies are needed for the installation to go along seamlessly. Therefore, run the following command to install them:

sudo apt install apt-transport-https curl gnupg-agent ca-certificates software-properties-common -y

Once the dependencies have been installed, proceed to the next step.

Step 3 – Install Docker on Ubuntu 24.04

With the requirements installed, the next step is to install Docker. We will install the Docker Community Edition (Docker CE) which is open-source and free to download and use.

To do so, we will add the GPG key:

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

Once added, add the Docker repository as follows:

sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable"

With the GPG key and the repository added, run the following command to install Docker and associated packages:

sudo apt install docker-ce docker-ce-cli containerd.io -y

This installs Docker and all the additional packages, libraries, and dependencies required by Docker and associated packages.

Once the command runs successfully, consider adding the currently logged-in user to the docker group. This allows you to run docker without invoking sudo:

sudo usermod -aG docker $USER
newgrp docker

You can now run Docker commands as a regular user without any challenges.

Step 4 – Confirm that Docker is Installed

To verify that Docker is installed, run the command:

docker version

Step 5 – Manage Docker Service

By default, Docker autostarts upon installation. To verify this, run the command:

sudo systemctl status docker

If, for any reason, Docker is not running, simply execute the following command:

sudo systemctl start docker

To enable Docker to start automatically every time on system startup, run the command:

sudo systemctl enable docker

To restart Docker run:

sudo systemctl restart docker

Step 6 – Test Docker

To give Docker a test run, we will pull a ‘hello-world’ image from Docker Hub. From the image, a container will be created that displays a ‘Hello world’ message on the terminal along with the steps of what just happened after the command was executed.

So, we will run the command:

docker run hello-world

To confirm the images on the system, run the command:

docker images

After the container is created, it exits or stops automatically. However, you can still check stopped containers, as shown:

docker ps -a