This patch deprecates exported manifest commands and moves the implementation
details to an unexported function.
Commands that are affected include:
- manifest.NewManifestCommand
Signed-off-by: Alano Terblanche <18033717+Benehiko@users.noreply.github.com>
(cherry picked from commit 02fda07211)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
54 lines
1.5 KiB
Go
54 lines
1.5 KiB
Go
package manifest
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/docker/cli/cli"
|
|
"github.com/docker/cli/cli/command"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// NewManifestCommand returns a cobra command for `manifest` subcommands
|
|
//
|
|
// Deprecated: Do not import commands directly. They will be removed in a future release.
|
|
func NewManifestCommand(dockerCLI command.Cli) *cobra.Command {
|
|
return newManifestCommand(dockerCLI)
|
|
}
|
|
|
|
// 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": ""},
|
|
}
|
|
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.
|
|
|
|
`
|