docker command not found - Debian

docker command not found -  Debian
Page content

How to Install Docker on Debian

Introduction

Docker is a powerful tool that simplifies the process of creating, deploying, and managing applications within containers. These containers allow developers to package up an application with all of the parts it needs, such as libraries and other dependencies, and ship it all out as one package. In this tutorial, we will guide you through the process of installing Docker on Debian and getting started with containerization.

Step 1: Update Your System

Before installing Docker, it’s always a good practice to update your system’s package index and upgrade the existing packages. You can do this by running the following commands:

sudo apt update
sudo apt upgrade

Step 2: Install Docker

To install Docker on Debian, you can use the official Docker repository. Follow these steps to add the Docker repository, install Docker, and start the Docker service:

sudo apt install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt update
sudo apt install docker-ce docker-ce-cli containerd.io
sudo systemctl start docker
sudo systemctl enable docker

Step 3: Verify Installation

To confirm that Docker has been successfully installed, you can run the following command to check the Docker version:

docker --version

If you see the Docker version displayed, congratulations, Docker has been installed on your Debian system!

Conclusion

In this tutorial, we walked you through the process of installing Docker on Debian. By following these steps, you now have Docker up and running on your system, ready to leverage the power of containerization for your development projects.


The Importance of Open Source Software

Open source software plays a crucial role in the tech industry, fostering collaboration, innovation, and accessibility. By embracing open source technologies like Docker, users can benefit from transparency, flexibility, and community-driven development. Supporting open source projects not only promotes a culture of sharing knowledge but also contributes to the advancement of technology for the greater good.