mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
11 lines
302 B
Go
11 lines
302 B
Go
|
package client
|
||
|
|
||
|
import "golang.org/x/net/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)
|
||
|
ensureReaderClosed(resp)
|
||
|
return err
|
||
|
}
|