Skip to content

wsberry/Docker-Quick-Help

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Docker-Quick-Help

Totally Clean out Docker

Stop all docker containers and apps and then remove them:

docker ps -aq | xargs docker stop | xargs docker rm

Remove all docker images:

docker rmi $(docker images -a -q)

Remove all docker volumes:

docker volume rm $(docker volume ls -qf dangling=true)
Note:

The Linux command, xargs, reads lines of text from the standard input or output of another command and then turns them into commands that are then executed.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published