1
0
mirror of https://github.com/strongdm/comply synced 2024-09-21 11:35:06 +00:00
comply/vendor/github.com/docker/docker/client/checkpoint_delete.go
2018-05-15 14:13:11 -07:00

21 lines
568 B
Go

package client
import (
"net/url"
"github.com/docker/docker/api/types"
"golang.org/x/net/context"
)
// CheckpointDelete deletes the checkpoint with the given name from the given container
func (cli *Client) CheckpointDelete(ctx context.Context, containerID string, options types.CheckpointDeleteOptions) error {
query := url.Values{}
if options.CheckpointDir != "" {
query.Set("dir", options.CheckpointDir)
}
resp, err := cli.delete(ctx, "/containers/"+containerID+"/checkpoints/"+options.CheckpointID, query, nil)
ensureReaderClosed(resp)
return err
}