Here’s a quick tip I discovered recently:
I was tired of having complex shell commands to look at docker’s dead containers and unused images. Happily, new versions (API v1.25 onwards) have simple equivalents:
docker system prune docker container prune docker network prune docker volume prune
Here’s a link to the documentation.