HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

podman export — Export the filesystem of a container and save it as a tarball on the local machine. See also: `podma

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandpodman exportandcliexportfilesystemcontainer

Problem

How to use the podman export command: Export the filesystem of a container and save it as a tarball on the local machine. See also: podman import, podman save. More information: <https://docs.podman.io/en/latest/markdown/podman-export.1.html>.

Solution

podman export — Export the filesystem of a container and save it as a tarball on the local machine. See also: podman import, podman save. More information: <https://docs.podman.io/en/latest/markdown/podman-export.1.html>.

Export a container's filesystem to a tar file:
podman export {{[-o|--output]}} {{path/to/file.tar}} {{container_name_or_id}}


Export a container's filesystem to stdout:
podman export {{container_name_or_id}} > {{path/to/file.tar}}

Code Snippets

Export a container's filesystem to a tar file

podman export {{[-o|--output]}} {{path/to/file.tar}} {{container_name_or_id}}

Export a container's filesystem to `stdout`

podman export {{container_name_or_id}} > {{path/to/file.tar}}

Context

tldr-pages: common/podman export

Revisions (0)

No revisions yet.