mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-23 10:21:00 +00:00
75513575be
* store dependency's in git * since we vendor ... rm tech-depts * aad make target 'vendor' to update vendor folder (manual task)
33 lines
850 B
Go
33 lines
850 B
Go
package docker // import "docker.io/go-docker"
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
|
|
"docker.io/go-docker/api/types/swarm"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// ConfigInspectWithRaw returns the config information with raw data
|
|
func (cli *Client) ConfigInspectWithRaw(ctx context.Context, id string) (swarm.Config, []byte, error) {
|
|
if err := cli.NewVersionError("1.30", "config inspect"); err != nil {
|
|
return swarm.Config{}, nil, err
|
|
}
|
|
resp, err := cli.get(ctx, "/configs/"+id, nil, nil)
|
|
if err != nil {
|
|
return swarm.Config{}, nil, wrapResponseError(err, resp, "config", id)
|
|
}
|
|
defer ensureReaderClosed(resp)
|
|
|
|
body, err := ioutil.ReadAll(resp.body)
|
|
if err != nil {
|
|
return swarm.Config{}, nil, err
|
|
}
|
|
|
|
var config swarm.Config
|
|
rdr := bytes.NewReader(body)
|
|
err = json.NewDecoder(rdr).Decode(&config)
|
|
|
|
return config, body, err
|
|
}
|