mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-23 18:31:00 +00:00
19 lines
368 B
Go
19 lines
368 B
Go
|
package docker // import "docker.io/go-docker"
|
||
|
|
||
|
import (
|
||
|
"net/url"
|
||
|
|
||
|
"golang.org/x/net/context"
|
||
|
)
|
||
|
|
||
|
// SwarmLeave leaves the swarm.
|
||
|
func (cli *Client) SwarmLeave(ctx context.Context, force bool) error {
|
||
|
query := url.Values{}
|
||
|
if force {
|
||
|
query.Set("force", "1")
|
||
|
}
|
||
|
resp, err := cli.post(ctx, "/swarm/leave", query, nil, nil)
|
||
|
ensureReaderClosed(resp)
|
||
|
return err
|
||
|
}
|