How to install docker using Linux terminal?

samiullahsaleem

Sami Ullah Saleem

Posted on April 1, 2023

How to install docker using Linux terminal?
  1. In the ssh terminal, enter the following command to install the yum-utils package:
sudo yum install -y yum-utils
Enter fullscreen mode Exit fullscreen mode

The yum-utils package includes a handy utility for adding package repositories that you will use next.

  1. Enter the following to add the Docker CE package repositories to your system:
sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
Enter fullscreen mode Exit fullscreen mode
  1. Enter the subsequent command to update the yum cache with the Docker repositories:
sudo yum makecache
Enter fullscreen mode Exit fullscreen mode
  1. Enter the following to install Docker CE:
sudo yum -y install docker-ce libseccomp
Enter fullscreen mode Exit fullscreen mode
  1. Enter the command below to start Docker as a service:
sudo systemctl start docker
Enter fullscreen mode Exit fullscreen mode
  1. Verify Docker is running by entering:
sudo docker info
Enter fullscreen mode Exit fullscreen mode

This will output system-wide information about Docker. The information will resemble the following:

alt
Enter fullscreen mode Exit fullscreen mode

You can see some useful information, such as the number of containers, and the version of the Docker server. Docker adopts a client-server architecture, so the server doesn't have to be running on the same host as the client. In your case, you are using the Docker command line interface (CLI) client to connect to the server, called the Docker daemon.

💖 💪 🙅 🚩
samiullahsaleem
Sami Ullah Saleem

Posted on April 1, 2023

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related