Skip to content

Instantly share code, notes, and snippets.

@mikea
Last active February 5, 2024 15:40
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikea/d23a839cba68778d94e0302e8a2c200f to your computer and use it in GitHub Desktop.
Save mikea/d23a839cba68778d94e0302e8a2c200f to your computer and use it in GitHub Desktop.
alias docker-cleanup='docker ps -a -q | xargs -I {} docker rm {} ; docker images -q -f dangling=true | xargs -I {} docker rmi -f {}; docker volume ls -qf dangling=true | xargs -I {} docker volume rm {}'
@JarLob
Copy link

JarLob commented May 19, 2023

Please add docker builder prune, otherwise docker disk usage keeps expanding.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment