mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-25 09:50:31 +00:00
11 lines
381 B
Go
11 lines
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)
|
||
|
}
|