mirror of https://github.com/docker/cli.git
23 lines
536 B
Go
23 lines
536 B
Go
|
package trust
|
||
|
|
||
|
import (
|
||
|
"github.com/docker/cli/cli"
|
||
|
"github.com/docker/cli/cli/command"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
// newTrustKeyCommand returns a cobra command for `trust key` subcommands
|
||
|
func newTrustKeyCommand(dockerCli command.Streams) *cobra.Command {
|
||
|
cmd := &cobra.Command{
|
||
|
Use: "key",
|
||
|
Short: "Manage keys for signing Docker images (experimental)",
|
||
|
Args: cli.NoArgs,
|
||
|
RunE: command.ShowHelp(dockerCli.Err()),
|
||
|
}
|
||
|
cmd.AddCommand(
|
||
|
newKeyGenerateCommand(dockerCli),
|
||
|
newKeyLoadCommand(dockerCli),
|
||
|
)
|
||
|
return cmd
|
||
|
}
|