diff --git a/Docker_CheatSheet.md b/Docker_CheatSheet.md new file mode 100644 index 0000000..c034bd5 --- /dev/null +++ b/Docker_CheatSheet.md @@ -0,0 +1,25 @@ + #Showing the Docker information + docker info + + #Run the conatiner + docker container run + + #Stop the conatiner + docker stop + + #Search Docker images through CLI + docker search nginx + + #Pull an image + docker pull + + #List the images + docker image ls + + #Remove an image + docker rmi + + #Retagging Images + docker tag + +