mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
81bb9978ab
And fix remove calls to return a notFound error Signed-off-by: Daniel Nephin <dnephin@docker.com>
10 lines
328 B
Go
10 lines
328 B
Go
package client
|
|
|
|
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)
|
|
}
|