mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4bd202b00f
- Migrates network command and subcommands (connect, create, disconnect, inspect, list and remove) to spf13/cobra - Create a RequiredExactArgs helper function for command that require an exact number of arguments. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
31 lines
712 B
Go
31 lines
712 B
Go
package network
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/docker/docker/api/client"
|
|
"github.com/docker/docker/cli"
|
|
)
|
|
|
|
// NewNetworkCommand returns a cobra command for `network` subcommands
|
|
func NewNetworkCommand(dockerCli *client.DockerCli) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "network",
|
|
Short: "Manage Docker networks",
|
|
Args: cli.NoArgs,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
fmt.Fprintf(dockerCli.Err(), "\n"+cmd.UsageString())
|
|
},
|
|
}
|
|
cmd.AddCommand(
|
|
newConnectCommand(dockerCli),
|
|
newCreateCommand(dockerCli),
|
|
newDisconnectCommand(dockerCli),
|
|
newInspectCommand(dockerCli),
|
|
newListCommand(dockerCli),
|
|
newRemoveCommand(dockerCli),
|
|
)
|
|
return cmd
|
|
}
|