In this post, I have tried to cover most of the basic commands which are required to start working with Docker. docker –version Get the currently installed version of docker docker pull Pull images from the docker repository(hub.docker.com) docker run Create a container from an image docker start docker stop docker ps list the running containers docker ps -a show all the running and exited containers docker images lists all the locally stored docker images docker rm used to delete a stopped container docker rmi used to delete an image from …