(ctx context.Context)
| 30 | // Client contains all functions required to interact with docker |
| 31 | type Client interface { |
| 32 | Ping(ctx context.Context) (dockertypes.Ping, error) |
| 33 | NegotiateAPIVersion(ctx context.Context) |
| 34 | |
| 35 | ImageBuild(ctx context.Context, context io.Reader, options build.ImageBuildOptions) (build.ImageBuildResponse, error) |
no outgoing calls
no test coverage detected