...

Text file src/github.com/google/go-containerregistry/cmd/crane/doc/crane_export.md

Documentation: github.com/google/go-containerregistry/cmd/crane/doc

     1## crane export
     2
     3Export filesystem of a container image as a tarball
     4
     5```
     6crane export IMAGE|- TARBALL|- [flags]
     7```
     8
     9### Examples
    10
    11```
    12  # Write tarball to stdout
    13  crane export ubuntu -
    14
    15  # Write tarball to file
    16  crane export ubuntu ubuntu.tar
    17
    18  # Read image from stdin
    19  crane export - ubuntu.tar
    20```
    21
    22### Options
    23
    24```
    25  -h, --help   help for export
    26```
    27
    28### Options inherited from parent commands
    29
    30```
    31      --allow-nondistributable-artifacts   Allow pushing non-distributable (foreign) layers
    32      --insecure                           Allow image references to be fetched without TLS
    33      --platform platform                  Specifies the platform in the form os/arch[/variant][:osversion] (e.g. linux/amd64). (default all)
    34  -v, --verbose                            Enable debug logs
    35```
    36
    37### SEE ALSO
    38
    39* [crane](crane.md)	 - Crane is a tool for managing container images
    40

View as plain text