Skip to content

Instantly share code, notes, and snippets.

@brotich
Created May 29, 2018 13:38
Show Gist options
  • Save brotich/57a11f4d1d6cf7701235e0f5d26541a0 to your computer and use it in GitHub Desktop.
Save brotich/57a11f4d1d6cf7701235e0f5d26541a0 to your computer and use it in GitHub Desktop.
get docker images children
!#/usr/bin/env bash
# from https://stackoverflow.com/questions/36584122/docker-how-can-i-get-the-list-of-dependent-child-images
for i in $(docker images -q)
do
docker history $i | grep -q d69bc9d9b016 && echo $i
done | sort -u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment