1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Remove checkpoint methods from builder backend

Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
Tonis Tiigi 2016-10-11 14:00:29 -07:00
parent 61753568f5
commit 5fb3b4205a

View file

@ -130,13 +130,6 @@ type Backend interface {
// ContainerUpdateCmdOnBuild updates container.Path and container.Args
ContainerUpdateCmdOnBuild(containerID string, cmd []string) error
// CheckpointCreate checkpoints a running container
CheckpointCreate(container string, config types.CheckpointCreateOptions) error
// CheckpointDelete deletes a container's checkpoint
CheckpointDelete(container string, checkpoint string) error
// CheckpointList lists the available checkpoints for a container
CheckpointList(container string) ([]types.Checkpoint, error)
// ContainerCopy copies/extracts a source FileInfo to a destination path inside a container
// specified by a container object.
// TODO: make an Extract method instead of passing `decompress`