Manual Installation of Docker

yum install docker-ce, systemctl start docker (docker community Edition) 

Pull Latest image of Centos

docker pull centos:latest

Test the Image

docker run -d --name test_instance centos:latest

Verify the Image

docker ps -a

To see docker version

docker --version

Comments

Popular posts from this blog

Docker Introduction