aws ecr list-images

From wikieduonline
Revision as of 11:16, 9 February 2023 by Brave (talk | contribs)
Jump to navigation Jump to search

https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ecr/list-images.html

aws ecr list-images --repository-name
aws ecr list-images --repository-name cluster-autoscaler
aws ecr list-images --repository-name your_repo/name
{
   "imageIds": [
       {
           "imageDigest": "sha256:9c60b65baxxxx54275e090c5bb7f0f0af9788",
           "imageTag": "rev-1b0befeba91d0d7bb223212266d2cfb1de500gg"
       }
   ]
}
for REPOS in $(aws ecr describe-repositories | grep repositoryName | cut -d'"' -f4); do echo $REPOS; aws ecr list-images --repository-name $REPOS; done


An error occurred (RepositoryNotFoundException) when calling the ListImages operation: The repository with name '0123456678.dkr.ecr.eu-west-1.amazonaws.com/xxxxx' does not exist in the registry with id '817545453581'

Related

See also

Advertising: