Closed sedrubal closed 8 years ago
It seems that
images = docker_cli.images(all=False)
does not return intermediates. We should use this call if we don't want to display intermediates, otherwise
images = docker_cli.images(all=True)
This is not possible, because docker_cli.images(all=False) only returns tagged layers but the most tagged layers have untagged parents. So we'd not be able to build up the tree.
docker_cli.images(all=False)
It seems that
does not return intermediates. We should use this call if we don't want to display intermediates, otherwise