Skip to content

Instantly share code, notes, and snippets.

@ouyi
Created February 15, 2018 07:33
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 ouyi/f3d79b9a45a73d2db26d49a48b11a824 to your computer and use it in GitHub Desktop.
Save ouyi/f3d79b9a45a73d2db26d49a48b11a824 to your computer and use it in GitHub Desktop.
Find docker child images
image_id="$1"
for i in $(docker images -q); do
docker history $i | grep -q "$image_id" && echo $i;
done | sort -u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment