Prabhjot

20 most popular Commands for Docker docker -version : gives the currently installed docker version.docker run : creates a container from an image.docker ps : lists down all the containers which are running.docker ps -a : lists all the running and the exited containers.docker stop : Stops a running containerdocker kill : kills a running container immediately, if its taking too much time to stop, one can kill it.docker commit : creates a new image of edited container on local

Read more