/ Published in: Bash
Remove all stopped containers.
Remove all untagged images
Remove all untagged images
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
docker rm $(docker ps -a -q) docker rmi $(docker images -q --filter "dangling=true")
URL: http://jimhoskins.com/2013/07/27/remove-untagged-docker-images.html