def images_on_gcloud(args): for x in util.gcloud_images(NAME): print("%-20s%-60s"%(x['TAG'], x['REPOSITORY']))
def images_on_gcloud(args): for x in util.gcloud_images(NAME): print("%-20s%-60s" % (x['TAG'], x['REPOSITORY']))
def images_on_gcloud(args): r = util.gcloud_docker_repo('smc-webapp-static') for x in util.gcloud_images(): if x['REPOSITORY'].startswith(r): print("%-20s%-60s"%(x['TAG'], x['REPOSITORY']))