mirror of https://github.com/docker/cli.git
28 lines
719 B
Go
28 lines
719 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()),
|
|
Annotations: map[string]string{"experimentalCLI": ""},
|
|
}
|
|
cmd.AddCommand(
|
|
newViewCommand(dockerCli),
|
|
newRevokeCommand(dockerCli),
|
|
newSignCommand(dockerCli),
|
|
newTrustKeyCommand(dockerCli),
|
|
newTrustSignerCommand(dockerCli),
|
|
newInspectCommand(dockerCli),
|
|
)
|
|
return cmd
|
|
}
|