How to Install Docker on Ubuntu: A Step-by-Step Guide

Fardeen Mansoori

Jan 8, 2025

2 min read

Blog Image

Introduction

Docker is an open-source platform that enables developers to automate the deployment of applications inside lightweight, portable containers. These containers package software with all its dependencies, ensuring consistent performance across different environments. Whether you're building, shipping, or running applications, Docker streamlines the process.

This guide walks you through the process of installing Docker on an Ubuntu system, ensuring a smooth and efficient setup.

Prerequisites for Installing Docker

Before diving into the installation process, ensure your system meets the following prerequisites:

  • Operating System: A supported version of Ubuntu (e.g., 20.04, 22.04).

  • User Permissions: Administrative (sudo) access.

  • Internet Access: Required to download packages and dependencies.

These prerequisites ensure a seamless installation process.

Installing Docker on Ubuntu

Follow the step-by-step instructions below to install Docker on your Ubuntu system. This section includes updating your package manager, adding Docker's GPG key, setting up the repository, and finally installing Docker.

Update Package Information:

First, update the package list and install necessary packages for Docker's repository setup.

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

Add Docker’s Official GPG Key:

This key is used to verify the authenticity of the Docker packages.

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

Add Docker Repository:

Add the Docker repository to your system's package sources.

echo "deb [arch=amd64 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

Install Docker:

Update the package list again and install Docker.

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

Start Docker and Enable it on Boot:

Start the Docker service and ensure it starts on boot.

sudo systemctl start docker
sudo systemctl enable docker

Verify Docker Installation:

Check that Docker is installed correctly by running the hello-world image.

sudo docker run hello-world

Conclusion

Installing Docker on Ubuntu is straightforward when you follow the right steps. With Docker installed, you can begin exploring its vast ecosystem and benefits. Whether you're a developer, sysadmin, or enthusiast, Docker empowers you to build, deploy, and manage applications with ease.

Start your Docker journey today and unlock the full potential of containerization!