mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
23 lines
554 B
Go
23 lines
554 B
Go
|
package client
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
|
||
|
"github.com/docker/docker/api/types"
|
||
|
"golang.org/x/net/context"
|
||
|
)
|
||
|
|
||
|
// CheckpointList returns the volumes configured in the docker host.
|
||
|
func (cli *Client) CheckpointList(ctx context.Context, container string) ([]types.Checkpoint, error) {
|
||
|
var checkpoints []types.Checkpoint
|
||
|
|
||
|
resp, err := cli.get(ctx, "/containers/"+container+"/checkpoints", nil, nil)
|
||
|
if err != nil {
|
||
|
return checkpoints, err
|
||
|
}
|
||
|
|
||
|
err = json.NewDecoder(resp.body).Decode(&checkpoints)
|
||
|
ensureReaderClosed(resp)
|
||
|
return checkpoints, err
|
||
|
}
|