2018-02-05 21:05:59 +00:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 18:46:37 +00:00
|
|
|
|
2018-04-19 22:30:59 +00:00
|
|
|
import "context"
|
2016-09-06 18:46:37 +00:00
|
|
|
|
|
|
|
// 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)
|
2017-09-08 16:04:34 +00:00
|
|
|
return wrapResponseError(err, resp, "service", serviceID)
|
2016-09-06 18:46:37 +00:00
|
|
|
}
|