podman save
all
Save an image to a local file or directory. See also: `podman load`, `podman export`.
More info →Options (3)
-o, --outputbooleanSave an image to a tar file
Example:
podman save {{[-o|--output]}} {{path/to/file.tar}} {{image:tag}}booleanSave an image with compression
Example:
podman save {{image:tag}} | {{[gzip|bzip2|xz|zstd|zstdchunked]}} > {{path/to/file.tar[.gz|.bz2|.xz|.zst|.zst]}}-T, --threadsbooleanTransfer an image to remote system with on-the-fly compression and progress bar
Example:
podman save {{image:tag}} | zstd {{[-T|--threads]}} 0 --ultra | pv | ssh {{username}}@{{remote_host}} podman loadExamples (4)
Save an image to a tar file
podman save [-o|--output] path/to/file.tar image:tagSave an image to `stdout`
podman save image:tag > path/to/file.tarSave an image with compression
podman save image:tag | [gzip|bzip2|xz|zstd|zstdchunked] > path/to/file.tar[.gz|.bz2|.xz|.zst|.zst]Transfer an image to remote system with on-the-fly compression and progress bar
podman save image:tag | zstd [-T|--threads] 0 --ultra | pv | ssh username@remote_host podman loadmade by @shridhargupta | data from tldr-pages