123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package network
- import (
- "golang.org/x/net/context"
- "github.com/docker/docker/api/client"
- "github.com/docker/docker/api/client/inspect"
- "github.com/docker/docker/cli"
- "github.com/spf13/cobra"
- )
- type inspectOptions struct {
- format string
- names []string
- }
- func newInspectCommand(dockerCli *client.DockerCli) *cobra.Command {
- var opts inspectOptions
- cmd := &cobra.Command{
- Use: "inspect [OPTIONS] NETWORK [NETWORK...]",
- Short: "Display detailed information on one or more networks",
- Args: cli.RequiresMinArgs(1),
- RunE: func(cmd *cobra.Command, args []string) error {
- opts.names = args
- return runInspect(dockerCli, opts)
- },
- }
- cmd.Flags().StringVarP(&opts.format, "format", "f", "", "Format the output using the given go template")
- return cmd
- }
- func runInspect(dockerCli *client.DockerCli, opts inspectOptions) error {
- client := dockerCli.Client()
- ctx := context.Background()
- getNetFunc := func(name string) (interface{}, []byte, error) {
- return client.NetworkInspectWithRaw(ctx, name)
- }
- return inspect.Inspect(dockerCli.Out(), opts.names, opts.format, getNetFunc)
- }
|