mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-11 18:15:28 +00:00
11 lines
360 B
Go
11 lines
360 B
Go
|
package docker // import "docker.io/go-docker"
|
||
|
|
||
|
import "golang.org/x/net/context"
|
||
|
|
||
|
// ServiceRemove kills and removes a service.
|
||
|
func (cli *Client) ServiceRemove(ctx context.Context, serviceID string) error {
|
||
|
resp, err := cli.delete(ctx, "/services/"+serviceID, nil, nil)
|
||
|
ensureReaderClosed(resp)
|
||
|
return wrapResponseError(err, resp, "service", serviceID)
|
||
|
}
|