2016-06-23 13:03:40 -04:00
|
|
|
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"
|
2016-12-24 19:05:37 -05:00
|
|
|
"golang.org/x/net/context"
|
2016-06-23 13:03:40 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
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()
|
2016-10-18 06:50:11 -04:00
|
|
|
flags.StringVarP(&opts.format, "format", "f", "", "Format the output using the given Go template")
|
2016-06-23 13:03:40 -04:00
|
|
|
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)
|
|
|
|
}
|