Skip to content

Instantly share code, notes, and snippets.

@banjtheman
Created May 10, 2022 21:43
Embed
What would you like to do?
Clean docker images
docker rm $(docker ps -qa --no-trunc --filter "status=exited")
docker rmi $(docker images --filter "dangling=true" -q --no-trunc)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment