2016-06-05 10:42:19 -04:00
|
|
|
package container
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"io"
|
|
|
|
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
|
|
|
|
"github.com/docker/docker/cli"
|
2016-09-08 13:11:39 -04:00
|
|
|
"github.com/docker/docker/cli/command"
|
2016-06-05 10:42:19 -04:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
type exportOptions struct {
|
|
|
|
container string
|
|
|
|
output string
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewExportCommand creates a new `docker export` command
|
2016-09-08 13:11:39 -04:00
|
|
|
func NewExportCommand(dockerCli *command.DockerCli) *cobra.Command {
|
2016-06-05 10:42:19 -04:00
|
|
|
var opts exportOptions
|
|
|
|
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "export [OPTIONS] CONTAINER",
|
|
|
|
Short: "Export a container's filesystem as a tar archive",
|
|
|
|
Args: cli.ExactArgs(1),
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
opts.container = args[0]
|
|
|
|
return runExport(dockerCli, opts)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
flags := cmd.Flags()
|
|
|
|
|
|
|
|
flags.StringVarP(&opts.output, "output", "o", "", "Write to a file, instead of STDOUT")
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
2016-09-08 13:11:39 -04:00
|
|
|
func runExport(dockerCli *command.DockerCli, opts exportOptions) error {
|
2016-08-29 11:11:29 -04:00
|
|
|
if opts.output == "" && dockerCli.Out().IsTerminal() {
|
2016-06-05 10:42:19 -04:00
|
|
|
return errors.New("Cowardly refusing to save to a terminal. Use the -o flag or redirect.")
|
|
|
|
}
|
|
|
|
|
|
|
|
clnt := dockerCli.Client()
|
|
|
|
|
|
|
|
responseBody, err := clnt.ContainerExport(context.Background(), opts.container)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer responseBody.Close()
|
|
|
|
|
|
|
|
if opts.output == "" {
|
|
|
|
_, err := io.Copy(dockerCli.Out(), responseBody)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-09-08 13:11:39 -04:00
|
|
|
return command.CopyToFile(opts.output, responseBody)
|
2016-06-05 10:42:19 -04:00
|
|
|
}
|