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

Method ContainerStart

dockerutil/dockerfake/client.go:249–254  ·  view source on GitHub ↗
(ctx context.Context, name string, options containertypes.StartOptions)

Source from the content-addressed store, hash-verified

247}
248
249func (m MockClient) ContainerStart(ctx context.Context, name string, options containertypes.StartOptions) error {
250 if m.ContainerStartFn == nil {
251 return nil
252 }
253 return m.ContainerStartFn(ctx, name, options)
254}
255
256func (MockClient) ContainerStop(_ context.Context, _ string, _ containertypes.StopOptions) error {
257 panic("not implemented")

Callers 2

runDockerCVMFunction · 0.80
GetImageMetadataFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected