In a docker load-able tar, the manifest contains a RepoTags field, which can list multiple different image references. When you docker load the tar, docker images then displays the image multiple times, named with each of the tags found in RepoTags.
Is there an equivalent way to do this in an OCI archive? I see index.json can use an org.opencontainers.image.ref.name annotation, but that only accepts one image name, not a list.
In a
docker load-able tar, the manifest contains aRepoTagsfield, which can list multiple different image references. When youdocker loadthe tar,docker imagesthen displays the image multiple times, named with each of the tags found inRepoTags.Is there an equivalent way to do this in an OCI archive? I see
index.jsoncan use anorg.opencontainers.image.ref.nameannotation, but that only accepts one image name, not a list.