-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request moby#23267 from vdemeester/migrate-export-to-cobra
Use spf13/cobra for docker export
- Loading branch information
Showing
7 changed files
with
63 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
package container | ||
|
||
import ( | ||
"errors" | ||
"io" | ||
|
||
"golang.org/x/net/context" | ||
|
||
"github.com/docker/docker/api/client" | ||
"github.com/docker/docker/cli" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
type exportOptions struct { | ||
container string | ||
output string | ||
} | ||
|
||
// NewExportCommand creates a new `docker export` command | ||
func NewExportCommand(dockerCli *client.DockerCli) *cobra.Command { | ||
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 | ||
} | ||
|
||
func runExport(dockerCli *client.DockerCli, opts exportOptions) error { | ||
if opts.output == "" && dockerCli.IsTerminalOut() { | ||
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 | ||
} | ||
|
||
return client.CopyToFile(opts.output, responseBody) | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters