1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-09-21 01:29:03 +00:00

Merge pull request #294 from mhemanthkmr/patch-1

added rm -f in docker.sh
This commit is contained in:
Julien Le Coupanec 2022-08-18 21:47:44 +02:00 committed by GitHub
commit bf8cc22dae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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