- The `/build/prune` endpoint was added in API v1.31 - The `/network` endpoints were added in API v1.21 This patch hides these commands on older API versions Before this change: ``` DOCKER_API_VERSION=1.0 docker ... Management Commands: builder Manage builds container Manage containers image Manage images manifest Manage Docker image manifests and manifest lists network Manage networks system Manage Docker trust Manage trust on Docker images ``` After this change ``` DOCKER_API_VERSION=1.0 docker ... Management Commands: container Manage containers image Manage images manifest Manage Docker image manifests and manifest lists system Manage Docker trust Manage trust on Docker images ``` Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
24 lines
535 B
Go
24 lines
535 B
Go
package builder
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/docker/cli/cli"
|
|
"github.com/docker/cli/cli/command"
|
|
)
|
|
|
|
// NewBuilderCommand returns a cobra command for `builder` subcommands
|
|
func NewBuilderCommand(dockerCli command.Cli) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "builder",
|
|
Short: "Manage builds",
|
|
Args: cli.NoArgs,
|
|
RunE: command.ShowHelp(dockerCli.Err()),
|
|
Annotations: map[string]string{"version": "1.31"},
|
|
}
|
|
cmd.AddCommand(
|
|
NewPruneCommand(dockerCli),
|
|
)
|
|
return cmd
|
|
}
|