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

Method ContainerExport

cli/command/container/client_test.go:164–169  ·  view source on GitHub ↗
(_ context.Context, containerID string, _ client.ContainerExportOptions)

Source from the content-addressed store, hash-verified

162}
163
164func (f *fakeClient) ContainerExport(_ context.Context, containerID string, _ client.ContainerExportOptions) (client.ContainerExportResult, error) {
165 if f.containerExportFunc != nil {
166 return f.containerExportFunc(containerID)
167 }
168 return http.NoBody, nil
169}
170
171func (f *fakeClient) ExecResize(_ context.Context, id string, options client.ExecResizeOptions) (client.ExecResizeResult, error) {
172 if f.containerExecResizeFunc != nil {

Callers 1

runExportFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected