This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/python2 | |
| # | |
| # usage: python2 docker_descendants.py <image_id> ... | |
| import sys | |
| from subprocess import check_output | |
| from collections import defaultdict | |
| def run(cmd): |