#ecr #container-image #manifest #docker #dump #content #locally

app ecr-dump

Dump all ECR image manifests locally

2 unstable releases

0.2.0 Sep 6, 2024
0.1.0 Sep 6, 2024

#121 in Unix APIs

Download history 187/week @ 2024-09-01 29/week @ 2024-09-08 38/week @ 2024-09-15

254 downloads per month

MIT license

25KB
552 lines

ecr-dump

A small tool to dump all image manifests from ECR.

$ export AWS_PROFILE=... AWS_REGION=...
$ ./ecr-dump images.jsonl --exclude='foo/*'

This will output the manifests and layers for all images in all ECR repositories:

{
  "image": {
    "repository_name": "foo/bar",
    "manifest_digest": "sha256:4ead720f67f34e4a430f4099d3f108cbf2324aaa53253fd1f0763add8f8158b0",
    "manifest_type": "Image",
    "image_tags": [
      "latest"
    ],
    "image_pushed_at": "2023-10-02T09:54:16Z"
  },
  "manifests": [
    {
      "content": {
        "schemaVersion": 2,
        "mediaType": "application/vnd.docker.distribution.manifest.v2+json",
        "config": {
          "mediaType": "application/vnd.docker.container.image.v1+json",
          "digest": "sha256:7473ca8183c19cbe756821945a727a2ed38470046ececc6d9a942602430d9789",
          "size": 12449
        },
        "layers": [
          {
            "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip",
            "digest": "sha256:7dbc1adf280e1aa588c033eaa746aa6db327ee16be705740f81741f5e6945c86",
            "size": 31417711
          }
        ]
      }
    }
  ]
}

Dependencies

~25–37MB
~567K SLoC