- updated the default value for `--limit` on `docker search` as the const has been
removed (added a todo to remove it)
- updated some fixtures to account for `KernelMemoryTCP` no longer being included
in the output.
full diff: 83b51522df...8941dcfcc5
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
11 lines
335 B
Go
11 lines
335 B
Go
package client // import "github.com/docker/docker/client"
|
|
|
|
import "context"
|
|
|
|
// NetworkRemove removes an existent network from the docker host.
|
|
func (cli *Client) NetworkRemove(ctx context.Context, networkID string) error {
|
|
resp, err := cli.delete(ctx, "/networks/"+networkID, nil, nil)
|
|
defer ensureReaderClosed(resp)
|
|
return err
|
|
}
|