MCPcopy Index your code
hub / github.com/coder/envbox / ContainerInspect

Method ContainerInspect

dockerutil/dockerfake/client.go:195–200  ·  view source on GitHub ↗
(ctx context.Context, name string)

Source from the content-addressed store, hash-verified

193}
194
195func (m MockClient) ContainerInspect(ctx context.Context, name string) (dockertypes.ContainerJSON, error) {
196 if m.ContainerInspectFn == nil {
197 return dockertypes.ContainerJSON{}, nil
198 }
199 return m.ContainerInspectFn(ctx, name)
200}
201
202func (MockClient) ContainerInspectWithRaw(_ context.Context, _ string, _ bool) (dockertypes.ContainerJSON, []byte, error) {
203 panic("not implemented")

Callers 1

GetImageMetadataFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected