MCPcopy Index your code
hub / github.com/docker/compose / imageInspect

Function imageInspect

pkg/compose/images_test.go:91–101  ·  view source on GitHub ↗
(id string, imageReference string, size int64, created string)

Source from the content-addressed store, hash-verified

89}
90
91func imageInspect(id string, imageReference string, size int64, created string) image.InspectResponse {
92 return image.InspectResponse{
93 ID: id,
94 RepoTags: []string{
95 "someRepo:someTag",
96 imageReference,
97 },
98 Size: size,
99 Created: created,
100 }
101}
102
103func containerDetail(service string, id string, status container.ContainerState, imageName string) container.Summary {
104 return container.Summary{

Callers 1

TestImagesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…