(ctx context.Context, dockerCLI command.Cli)
| 169 | } |
| 170 | |
| 171 | func inspectConfig(ctx context.Context, dockerCLI command.Cli) inspect.GetRefFunc { |
| 172 | return func(ref string) (any, []byte, error) { |
| 173 | res, err := dockerCLI.Client().ConfigInspect(ctx, ref, client.ConfigInspectOptions{}) |
| 174 | return res.Config, res.Raw, err |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | func inspectAll(ctx context.Context, dockerCLI command.Cli, getSize bool, typeConstraint objectType) inspect.GetRefFunc { |
| 179 | inspectAutodetect := []struct { |
no test coverage detected
searching dependent graphs…