How to Install Docker on Ubuntu Linux

How to Install Docker on Ubuntu Linux
Photo by Mohammad Rahmani on Unsplash

Morning! 

I wanted to share a recent journey I took into Docker running on Ubuntu. Today, I’m going to show you How to Install Docker on Ubuntu Linux and how to get it ready for creating containers. 



I’ll even show you how to create a test container to confirm you’ve done everything right…

How to Install Docker on Ubuntu Linux

First things first is to setup the apt repository:

# Add Docker's official GPG key:
sudo apt-get update
sudo apt-get install ca-certificates curl gnupg
sudo install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
sudo chmod a+r /etc/apt/keyrings/docker.gpg

# Add the repository to Apt sources:
echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
  $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update

Now we need to install the latest version of Docker:

sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

Finally, we can confirm that Docker was installed successfully by creating a test container:

sudo docker run hello-world

The above command downloads a test image and runs it inside a container. If everything works correctly, you will see that it prints a confirmation message and then exits.

And and simple now you know how to do it!

Enjoy 🎉

Leave a Comment

email popup image
Mark Harwood
NEVER miss a blog post again! Subscribe for email notifications whenever a new post is live!
Subscribe
NEVER miss a blog post again! Subscribe for email notifications whenever a new post is live!
Have a topic for me to cover?
Contact form image
I'll Be In Touch Soon