Sunday, May 31, 2020

Installation of Docker in Fedora

Hi,

In this post I am going to talk about how to install docker in fedora.

the least software/tool required is the terminal.

Let us now install docker in fedora....

Installing docker
Open a terminal and provide the command given below at the prompt...

> sudo dnf install docker
the package installer tool would display the packages to be installed and would wait for your confirmation as given in the picture given below...


press Y/y to proceed....

The package installer would now install the packages, if the installation is successful the package installer would show you the result as the one given below.



Now is the time to check the status of the docker installed...

Checking the status of the docker process
provide the command below to know the status of the docker process...

> sudo systemctl status docker
we have just installed the docker and would have the status as given in the picture below....


Enabling the docker process
In order to enable the docker, fire the below command at the prompt

> sudo systemctl enable docker
the above command would make the docker up and running at the start of the system every time...

Starting the docker process
In order to start the docker, provide the command mentioned below...

> sudo systemctl start docker
the above command would have the docker process up and running...

To view the details of the running docker process, proivde the command given below at the prompt...

> sudo systemctl status docker
and the result would be...



Well that is it, this concludes this post....

Hope you had great time reading...

Thanks/

No comments:

Post a Comment

How to change the root password in linux when it is forgotten/to change

This blog is all about changing the root password of the Linux system when it is forgotten or to reset the password...   Let's get it ...