mirror of
https://github.com/drone/drone-cli.git
synced 2026-01-25 04:08:02 +01:00
21 lines
595 B
Go
21 lines
595 B
Go
package docker // import "docker.io/go-docker"
|
|
|
|
import (
|
|
"net/url"
|
|
|
|
"docker.io/go-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
|
|
}
|