1
0
mirror of https://github.com/docker/cli.git synced 2026-01-18 08:21:31 +03:00

Migrate export command to cobra

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Upstream-commit: 6ee903eea0
Component: cli
This commit is contained in:
Vincent Demeester
2016-06-05 16:42:19 +02:00
parent be19ee5f31
commit 036d47c325
2 changed files with 1 additions and 1 deletions

View File

@@ -34,6 +34,7 @@ func NewCobraAdaptor(clientFlags *cliflags.ClientFlags) CobraAdaptor {
rootCmd.SetOutput(stdout)
rootCmd.AddCommand(
container.NewCreateCommand(dockerCli),
container.NewExportCommand(dockerCli),
container.NewRunCommand(dockerCli),
image.NewSearchCommand(dockerCli),
volume.NewVolumeCommand(dockerCli),

View File

@@ -15,7 +15,6 @@ var DockerCommandUsage = []Command{
{"diff", "Inspect changes on a container's filesystem"},
{"events", "Get real time events from the server"},
{"exec", "Run a command in a running container"},
{"export", "Export a container's filesystem as a tar archive"},
{"history", "Show the history of an image"},
{"images", "List images"},
{"import", "Import the contents from a tarball to create a filesystem image"},