11 строки
381 B
Go
11 строки
381 B
Go
package docker // import "docker.io/go-docker"
|
|
|
|
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 wrapResponseError(err, resp, "network", networkID)
|
|
}
|