mirror of https://github.com/docker/cli.git
24 lines
537 B
Go
24 lines
537 B
Go
package trust
|
|
|
|
import (
|
|
"github.com/docker/cli/cli"
|
|
"github.com/docker/cli/cli/command"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// NewTrustCommand returns a cobra command for `trust` subcommands
|
|
func NewTrustCommand(dockerCli command.Cli) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "trust",
|
|
Short: "Manage trust on Docker images (experimental)",
|
|
Args: cli.NoArgs,
|
|
RunE: command.ShowHelp(dockerCli.Err()),
|
|
}
|
|
cmd.AddCommand(
|
|
newViewCommand(dockerCli),
|
|
newRevokeCommand(dockerCli),
|
|
newSignCommand(dockerCli),
|
|
)
|
|
return cmd
|
|
}
|