MCPcopy Index your code
hub / github.com/docker/cli / ContainerStart

Method ContainerStart

cli/command/container/client_test.go:157–162  ·  view source on GitHub ↗
(_ context.Context, containerID string, options client.ContainerStartOptions)

Source from the content-addressed store, hash-verified

155}
156
157func (f *fakeClient) ContainerStart(_ context.Context, containerID string, options client.ContainerStartOptions) (client.ContainerStartResult, error) {
158 if f.containerStartFunc != nil {
159 return f.containerStartFunc(containerID, options)
160 }
161 return client.ContainerStartResult{}, nil
162}
163
164func (f *fakeClient) ContainerExport(_ context.Context, containerID string, _ client.ContainerExportOptions) (client.ContainerExportResult, error) {
165 if f.containerExportFunc != nil {

Callers 3

RunStartFunction · 0.80
runContainerFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected