Difference between revisions of "Aws ecr describe-images"

From wikieduonline
Jump to navigation Jump to search
Line 6: Line 6:
  
  
 +
== Examples ==
 
Official example:
 
Official example:
 
<pre>
 
<pre>

Revision as of 12:23, 11 January 2022


for REPOS in `aws ecr describe-repositories --output text | awk '{print $6}' | grep .`; do aws ecr describe-images --repository-name  $REPOS; done


Examples

Official example:

{
    "imageDetails": [
        {
            "registryId": "012345678910",
            "repositoryName": "cluster-autoscaler",
            "imageDigest": "sha256:4a1c6567c38904384ebc64e35b7eeddd8451110c299e3368d2210066487d97e5",
            "imageTags": [
                "v1.13.6"
            ],
            "imageSizeInBytes": 48318255,
            "imagePushedAt": 1565128275.0
        }
    ]
}
        {
            "registryId": "012345678910",
            "repositoryName": "test-example",
            "imageDigest": "sha256:71110833270d9e9cf7c70ad79cfed91daf2fef9c299e3368d2210066487d97e5",
            "imageTags": [
                "68d06c84"
            ],
            "imageSizeInBytes": 372421825,
            "imagePushedAt": "2021-06-10T05:48:04-07:00",
            "imageManifestMediaType": "application/vnd.docker.distribution.manifest.v2+json",
            "[[artifactMediaType]]": "application/vnd.docker.container.image.v1+json"
        }

See also

Advertising: