history This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ==== Delete stopped containers ==== <code> docker rm $(docker ps -a -q) </code> ==== Delete untagged images ==== <code> docker rmi $(docker images -f "dangling=true" -q) </code>