Replies: 1 comment 1 reply
-
@usrme I think you have misused the command. The last argument, |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Right off the bat: I'm terribly sorry if I'm using the wrong terminology throughout; I'm still not well-versed in the space of OCI!
What I'm basically trying to achieve is to have an artifact that just refers to other images. This artifact would serve as a blueprint for a given environment in terms of what images that environment requires and if a new environment receives the same blueprint, then the list of references could be iterated to, for example, pull all the images.
I've tried to find examples of other people doing something similar, but I've only mostly found people attaching annotations to images, whereas I'd need a way to attach an image to an artifact.
Something akin to the following doesn't seem to work:
Where
localhost:5000/hello-world:latest
is created usingoras cp docker.io/library/hello-world:latest --to-oci-layout localhost:5000/hello-world:latest --platform linux/amd64
and the custom artifact is created using:Any help is much appreciated!
Beta Was this translation helpful? Give feedback.
All reactions