Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fullbeats/4a6cb468e5f553add2a4d3e0cba195fb to your computer and use it in GitHub Desktop.
Save fullbeats/4a6cb468e5f553add2a4d3e0cba195fb to your computer and use it in GitHub Desktop.
Safely remove all dangling docker images without tag
docker rmi $(docker images -a --filter "dangling=true" |grep "<none>"|awk '$1=="<none>" {print $3}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment