mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4c7f0d268f
Make better default usage on context.Context on the `api/client` package to share the context (it is useless if not shared, which was the case for a lot of commands). Signed-off-by: Vincent Demeester <vincent@sbr.pm>
41 lines
1 KiB
Go
41 lines
1 KiB
Go
package client
|
|
|
|
import (
|
|
"errors"
|
|
"io"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
Cli "github.com/docker/docker/cli"
|
|
flag "github.com/docker/docker/pkg/mflag"
|
|
)
|
|
|
|
// CmdExport exports a filesystem as a tar archive.
|
|
//
|
|
// The tar archive is streamed to STDOUT by default or written to a file.
|
|
//
|
|
// Usage: docker export [OPTIONS] CONTAINER
|
|
func (cli *DockerCli) CmdExport(args ...string) error {
|
|
cmd := Cli.Subcmd("export", []string{"CONTAINER"}, Cli.DockerCommands["export"].Description, true)
|
|
outfile := cmd.String([]string{"o", "-output"}, "", "Write to a file, instead of STDOUT")
|
|
cmd.Require(flag.Exact, 1)
|
|
|
|
cmd.ParseFlags(args, true)
|
|
|
|
if *outfile == "" && cli.isTerminalOut {
|
|
return errors.New("Cowardly refusing to save to a terminal. Use the -o flag or redirect.")
|
|
}
|
|
|
|
responseBody, err := cli.client.ContainerExport(context.Background(), cmd.Arg(0))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer responseBody.Close()
|
|
|
|
if *outfile == "" {
|
|
_, err := io.Copy(cli.out, responseBody)
|
|
return err
|
|
}
|
|
|
|
return copyToFile(*outfile, responseBody)
|
|
}
|