mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
45 lines
1.2 KiB
Go
45 lines
1.2 KiB
Go
|
package image
|
||
|
|
||
|
import (
|
||
|
"golang.org/x/net/context"
|
||
|
|
||
|
"github.com/docker/docker/cli"
|
||
|
"github.com/docker/docker/cli/command"
|
||
|
"github.com/docker/docker/cli/command/inspect"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
type inspectOptions struct {
|
||
|
format string
|
||
|
refs []string
|
||
|
}
|
||
|
|
||
|
// newInspectCommand creates a new cobra.Command for `docker image inspect`
|
||
|
func newInspectCommand(dockerCli *command.DockerCli) *cobra.Command {
|
||
|
var opts inspectOptions
|
||
|
|
||
|
cmd := &cobra.Command{
|
||
|
Use: "inspect [OPTIONS] IMAGE [IMAGE...]",
|
||
|
Short: "Display detailed information on one or more images",
|
||
|
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")
|
||
|
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.ImageInspectWithRaw(ctx, ref)
|
||
|
}
|
||
|
return inspect.Inspect(dockerCli.Out(), opts.refs, opts.format, getRefFunc)
|
||
|
}
|