mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 04:11:03 +00:00
22 lines
509 B
Go
22 lines
509 B
Go
|
package docker // import "docker.io/go-docker"
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
|
||
|
"docker.io/go-docker/api/types/swarm"
|
||
|
"golang.org/x/net/context"
|
||
|
)
|
||
|
|
||
|
// SwarmInit initializes the swarm.
|
||
|
func (cli *Client) SwarmInit(ctx context.Context, req swarm.InitRequest) (string, error) {
|
||
|
serverResp, err := cli.post(ctx, "/swarm/init", nil, req, nil)
|
||
|
if err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
|
||
|
var response string
|
||
|
err = json.NewDecoder(serverResp.body).Decode(&response)
|
||
|
ensureReaderClosed(serverResp)
|
||
|
return response, err
|
||
|
}
|