Files
buildx/vendor/github.com/docker/docker/client/service_remove.go
Tonis Tiigi fd8fbf21e6 vendor: initial vendor
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
2019-03-22 16:27:37 -07:00

11 lines
355 B
Go

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)
ensureReaderClosed(resp)
return wrapResponseError(err, resp, "service", serviceID)
}