podman load
all
Load an image from an oci-archive or a docker-archive created using `podman save`. See also: `podman save`, `podman import`.
More info →Options (2)
-i, --inputbooleanLoad an image from a tar file
Example:
podman load {{[-i|--input]}} {{path/to/file.tar}}-q, --quietbooleanLoad an image and display quiet output (only show the image ID)
Example:
podman load {{[-q|--quiet]}} {{[-i|--input]}} {{path/to/file.tar}}Examples (4)
Load an image from a tar file
podman load [-i|--input] path/to/file.tarLoad an image from a compressed tar file
podman load [-i|--input] path/to/file.tar[.gz|.bz2|.xz|.zst]Load an image and display quiet output (only show the image ID)
podman load [-q|--quiet] [-i|--input] path/to/file.tarLoad an image from `stdin`
podman < path/to/file.tar loadmade by @shridhargupta | data from tldr-pages