mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-23 10:21:00 +00:00
75513575be
* store dependency's in git * since we vendor ... rm tech-depts * aad make target 'vendor' to update vendor folder (manual task)
10 lines
381 B
Go
10 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)
|
|
}
|