Install Docker on Centos 7
Hello friends, in this opportunity I am going to review how to install the Docker on Centos 7. For this we need to do the following:
1.- First, we need to install the followings dependencies: yum-utils, device-mapper-persistent-data and lvm2. In my case I have installed.
2. Next we need to add the docker repository.
3.- Then, we need to install docker using the yum install docker-ce command.
During the installation process, we need to accepted the information key.
4.- Finally, when the installation has finished. We need start up the docker service executing the systemctl start docker command and verify it through the docker run hello-world command.