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

Method ExecCreate

cli/command/container/client_test.go:72–77  ·  view source on GitHub ↗
(_ context.Context, containerID string, config client.ExecCreateOptions)

Source from the content-addressed store, hash-verified

70}
71
72func (f *fakeClient) ExecCreate(_ context.Context, containerID string, config client.ExecCreateOptions) (client.ExecCreateResult, error) {
73 if f.execCreateFunc != nil {
74 return f.execCreateFunc(containerID, config)
75 }
76 return client.ExecCreateResult{}, nil
77}
78
79func (f *fakeClient) ExecInspect(_ context.Context, execID string, _ client.ExecInspectOptions) (client.ExecInspectResult, error) {
80 if f.execInspectFunc != nil {

Callers 1

RunExecFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected