Merge pull request #23269 from vdemeester/migrate-import-to-cobra

Use spf13/cobra for docker import
This commit is contained in:
Sebastiaan van Stijn 2016-06-07 13:07:30 +02:00
commit 7300075b39
2 changed files with 1 additions and 1 deletions

View File

@ -51,6 +51,7 @@ func NewCobraAdaptor(clientFlags *cliflags.ClientFlags) CobraAdaptor {
image.NewHistoryCommand(dockerCli),
image.NewRemoveCommand(dockerCli),
image.NewSearchCommand(dockerCli),
image.NewImportCommand(dockerCli),
network.NewNetworkCommand(dockerCli),
volume.NewVolumeCommand(dockerCli),
)

View File

@ -14,7 +14,6 @@ var DockerCommandUsage = []Command{
{"events", "Get real time events from the server"},
{"exec", "Run a command in a running container"},
{"images", "List images"},
{"import", "Import the contents from a tarball to create a filesystem image"},
{"info", "Display system-wide information"},
{"inspect", "Return low-level information on a container or image"},
{"kill", "Kill a running container"},