mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
d5179cb4d4
This change does some minor cleanups in the cli/command/container package; - sort imports - replace `fmt.Fprintf()` with `fmt.Fprintln()` if no formatting is used - replace `fmt.Errorf()` with `errors.New()` if no formatting is used - remove some redundant `else`'s Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
46 lines
1.3 KiB
Go
46 lines
1.3 KiB
Go
package container
|
|
|
|
import (
|
|
"github.com/docker/docker/cli"
|
|
"github.com/docker/docker/cli/command"
|
|
"github.com/docker/docker/cli/command/inspect"
|
|
"github.com/spf13/cobra"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
type inspectOptions struct {
|
|
format string
|
|
size bool
|
|
refs []string
|
|
}
|
|
|
|
// newInspectCommand creates a new cobra.Command for `docker container inspect`
|
|
func newInspectCommand(dockerCli *command.DockerCli) *cobra.Command {
|
|
var opts inspectOptions
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "inspect [OPTIONS] CONTAINER [CONTAINER...]",
|
|
Short: "Display detailed information on one or more containers",
|
|
Args: cli.RequiresMinArgs(1),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
opts.refs = args
|
|
return runInspect(dockerCli, opts)
|
|
},
|
|
}
|
|
|
|
flags := cmd.Flags()
|
|
flags.StringVarP(&opts.format, "format", "f", "", "Format the output using the given Go template")
|
|
flags.BoolVarP(&opts.size, "size", "s", false, "Display total file sizes")
|
|
|
|
return cmd
|
|
}
|
|
|
|
func runInspect(dockerCli *command.DockerCli, opts inspectOptions) error {
|
|
client := dockerCli.Client()
|
|
ctx := context.Background()
|
|
|
|
getRefFunc := func(ref string) (interface{}, []byte, error) {
|
|
return client.ContainerInspectWithRaw(ctx, ref, opts.size)
|
|
}
|
|
return inspect.Inspect(dockerCli.Out(), opts.refs, opts.format, getRefFunc)
|
|
}
|