2016-06-23 13:03:40 -04:00
|
|
|
package image
|
|
|
|
|
|
|
|
import (
|
2018-05-03 21:02:44 -04:00
|
|
|
"context"
|
2016-06-23 13:03:40 -04:00
|
|
|
|
2017-04-17 18:07:56 -04:00
|
|
|
"github.com/docker/cli/cli"
|
|
|
|
"github.com/docker/cli/cli/command"
|
|
|
|
"github.com/docker/cli/cli/command/inspect"
|
2021-01-18 05:43:29 -05:00
|
|
|
flagsHelper "github.com/docker/cli/cli/flags"
|
2016-06-23 13:03:40 -04:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
type inspectOptions struct {
|
|
|
|
format string
|
|
|
|
refs []string
|
|
|
|
}
|
|
|
|
|
|
|
|
// newInspectCommand creates a new cobra.Command for `docker image inspect`
|
2017-03-30 20:21:14 -04:00
|
|
|
func newInspectCommand(dockerCli command.Cli) *cobra.Command {
|
2016-06-23 13:03:40 -04:00
|
|
|
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()
|
2022-03-08 08:54:21 -05:00
|
|
|
flags.StringVarP(&opts.format, "format", "f", "", flagsHelper.InspectFormatHelp)
|
2016-06-23 13:03:40 -04:00
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
2017-03-30 20:21:14 -04:00
|
|
|
func runInspect(dockerCli command.Cli, opts inspectOptions) error {
|
2016-06-23 13:03:40 -04:00
|
|
|
client := dockerCli.Client()
|
|
|
|
ctx := context.Background()
|
|
|
|
|
2023-11-20 12:04:36 -05:00
|
|
|
getRefFunc := func(ref string) (any, []byte, error) {
|
2016-06-23 13:03:40 -04:00
|
|
|
return client.ImageInspectWithRaw(ctx, ref)
|
|
|
|
}
|
|
|
|
return inspect.Inspect(dockerCli.Out(), opts.refs, opts.format, getRefFunc)
|
|
|
|
}
|