b688af2226
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
20 lines
601 B
Go
20 lines
601 B
Go
package client // import "github.com/docker/docker/client"
|
|
|
|
import (
|
|
"context"
|
|
"net/url"
|
|
|
|
"github.com/docker/docker/api/types/checkpoint"
|
|
)
|
|
|
|
// CheckpointDelete deletes the checkpoint with the given name from the given container
|
|
func (cli *Client) CheckpointDelete(ctx context.Context, containerID string, options checkpoint.DeleteOptions) 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
|
|
}
|