-
I download some semi-random image from some red hat registry or docker one. is there no simple way to make it work without 100+ obscure arguments? I want to learn how I can take image from registry, take it to offline machine WITHOUT registry access, and import it from tar file or something and ACTUALLY run it, with minimal arguments, etc. podman info
Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
If you inspect the old image and the new do the file look pretty much the same? |
Beta Was this translation helpful? Give feedback.
-
If you've used |
Beta Was this translation helpful? Give feedback.
-
thank you Nalind, that was exactly what I was looking for. |
Beta Was this translation helpful? Give feedback.
If you've used
podman save
to save the image, usepodman load
to load it elsewhere -- they use the same format, and the image's settings should be preserved. Even ifpodman import
doesn't error out when pointed at a file created bypodman save
, I don't think the result will be what you want.