Skip to content

Instantly share code, notes, and snippets.

@zinovyev
Last active December 14, 2017 10:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zinovyev/cc1e71c9b85d5d0839f94060031f55c5 to your computer and use it in GitHub Desktop.
Save zinovyev/cc1e71c9b85d5d0839f94060031f55c5 to your computer and use it in GitHub Desktop.
Remove docker containers with duplicating images
docker ps -a | grep -v "Up" | sort -k2 | awk '{ if (prev_image==$2) { print "docker rm -f "$1 } ; prev_image=$2 }' | bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment