Hi, I understand that you want to list list the images from cloud shell and you have 5 images. You are correct that you can list the existing images with the "gcloud container images list --repository=<REPO>" command[1]. However, I think you should omit the "2.0" from the "repository" flag as I believe that "gcr.io/projectid/repo-name/2.0" is the image name. *$ gcloud container images list --repository gcr.io/projectid/repo-name*
However, if you are looking to list the tags and digests for the "2.0" image, you can use the "gcloud container images list-tags" command[2]. *$ gcloud container images list-tags gcr.io/projectid/repo-name/2.0* I hope you'll find information provided above useful. [1] https://cloud.google.com/sdk/gcloud/reference/container/images/list#--repository [2] https://cloud.google.com/sdk/gcloud/reference/container/images/list-tags On Monday, November 8, 2021 at 2:46:55 PM UTC-5 [email protected] wrote: > Hi, > raviatloop@cloudshell:~ ()$ gcloud container images list --repository= > gcr.io/projectid/repo-name/2.0 > Listed 0 items. > raviatloop@cloudshell:~ ()$ > > I am not able to list the images from cloud shell even there are around 5 > images exits in the gcr.io/projectid/repo-name/2.0 > > Thanks for the help. > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/425c3ab0-ccb6-477d-a262-59eeb82c8a59n%40googlegroups.com.
