summaryrefslogtreecommitdiff
path: root/client/service_remove.go
blob: 2c46326ebcf38faa53a344430378510dc6a83f5e (plain)
1
2
3
4
5
6
7
8
9
10
package client // import "github.com/docker/docker/client"

import "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)
	defer ensureReaderClosed(resp)
	return err
}