mirror of
https://gitea.com/gitea/runner.git
synced 2026-07-09 16:28:40 +08:00
320e9b6057
ci-via-github-actions
11 lines
376 B
Go
11 lines
376 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)
|
|
ensureReaderClosed(resp)
|
|
return wrapResponseError(err, resp, "network", networkID)
|
|
}
|