How to migrate from Docker PULL + TAG + PUSH commands to Crane equivalents? #550
Unanswered
simon-liebehenschel
asked this question in
Q&A
Replies: 1 comment 1 reply
-
I did not understand your question. |
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
-
In my CI/CD I pull an image from the private registry, change its tag, and push the image to Google Cloud.
What I do now:
The problem is that Crane has different logic for the same commands, so I can not just
crane pull
, etc. For example, Crane accepts two arguments for thepull
.crane pull IMAGE TARBALL [flags]
I have no idea what I need to write as a "tarball" argument in my case.What is the correct way to migrate from Docker (PULL + TAG + PUSH workflow) to the Crane to achieve the same result?
Beta Was this translation helpful? Give feedback.
All reactions