Skip to content

Instantly share code, notes, and snippets.

@lucamilan
Created February 17, 2021 08:41
Show Gist options
  • Select an option

  • Save lucamilan/b95f8b879dc596af2d11badd383e6f8f to your computer and use it in GitHub Desktop.

Select an option

Save lucamilan/b95f8b879dc596af2d11badd383e6f8f to your computer and use it in GitHub Desktop.
Cleanup Docker Images
# remove dangling images
docker rmi -f $(docker images -f dangling=true -q)
# remove dangling volumes
docker volume rm $(docker volume ls -qf dangling=true)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment