CleanUpDocker: Difference between revisions
Jump to navigation
Jump to search
(Added CleanUpDocker) |
(No difference)
|
Revision as of 14:13, 24 January 2018
Remove all containers then remove all images
$ docker ps -a | cut -f 1 -d" " | xargs docker rm
$ docker images | awk '{print $3}' | xargs docker rmi