mirror of https://github.com/docker/cli.git
53 lines
1.3 KiB
Go
53 lines
1.3 KiB
Go
package manifest
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/docker/cli/cli"
|
|
"github.com/docker/cli/cli/command"
|
|
"github.com/docker/cli/internal/commands"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
commands.Register(newManifestCommand)
|
|
}
|
|
|
|
// newManifestCommand returns a cobra command for `manifest` subcommands
|
|
func newManifestCommand(dockerCLI command.Cli) *cobra.Command {
|
|
// use dockerCli as command.Cli
|
|
cmd := &cobra.Command{
|
|
Use: "manifest COMMAND",
|
|
Short: "Manage Docker image manifests and manifest lists",
|
|
Long: manifestDescription,
|
|
Args: cli.NoArgs,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
_, _ = fmt.Fprint(dockerCLI.Err(), "\n"+cmd.UsageString())
|
|
},
|
|
Annotations: map[string]string{"experimentalCLI": ""},
|
|
DisableFlagsInUseLine: true,
|
|
}
|
|
cmd.AddCommand(
|
|
newCreateListCommand(dockerCLI),
|
|
newInspectCommand(dockerCLI),
|
|
newAnnotateCommand(dockerCLI),
|
|
newPushListCommand(dockerCLI),
|
|
newRmManifestListCommand(dockerCLI),
|
|
)
|
|
return cmd
|
|
}
|
|
|
|
var manifestDescription = `
|
|
The **docker manifest** command has subcommands for managing image manifests and
|
|
manifest lists. A manifest list allows you to use one name to refer to the same image
|
|
built for multiple architectures.
|
|
|
|
To see help for a subcommand, use:
|
|
|
|
docker manifest CMD --help
|
|
|
|
For full details on using docker manifest lists, see the registry v2 specification.
|
|
|
|
`
|