Docker basic commands in linux
Installation of docker:
yum install docker -y
To start docker service:
service docker start
#shows all the docker images in our docker server:
docker images
#shows all the docker containers in our docker server:
docker ps -a
#shows all the runnin...
venkateshwar.hashnode.dev2 min read