Compare commits

...

2 Commits

Author SHA1 Message Date
Julien Le Coupanec
bf8cc22dae Merge pull request #294 from mhemanthkmr/patch-1
added rm -f in docker.sh
2022-08-18 21:47:44 +02:00
HemanthKumar M
b095a3534d added rm -f in docker.sh
Kindly Verify it
2022-08-05 15:31:25 +05:30

View File

@@ -12,6 +12,7 @@ docker stop <hash> # Gracefully stop the specified cont
docker ps -a # See a list of all containers, even the ones not running
docker kill <hash> # Force shutdown of the specified container
docker rm <hash> # Remove the specified container from this machine
docker rm -f <hash> # Remove force specified container from this machine
docker rm $(docker ps -a -q) # Remove all containers from this machine
docker images -a # Show all images on this machine
docker rmi <imagename> # Remove the specified image from this machine