You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
332 B
Go
21 lines
332 B
Go
6 years ago
|
package commands
|
||
|
|
||
|
import (
|
||
|
"github.com/docker/cli/cli/command"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
func RootCmd(dockerCli command.Cli) *cobra.Command {
|
||
|
cmd := &cobra.Command{
|
||
|
Use: "imagetools",
|
||
|
Short: "Commands to work on images in registry",
|
||
|
}
|
||
|
|
||
|
cmd.AddCommand(
|
||
|
inspectCmd(dockerCli),
|
||
|
createCmd(dockerCli),
|
||
|
)
|
||
|
|
||
|
return cmd
|
||
|
}
|