mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4dd86a0b33
- prefer error over panic where possible - ContainerChanges is not implemented by snapshotter-based ImageService Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com> Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
27 lines
903 B
Go
27 lines
903 B
Go
package containerd
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/docker/docker/api/types/backend"
|
|
"github.com/docker/docker/errdefs"
|
|
"github.com/docker/docker/image"
|
|
)
|
|
|
|
// CommitImage creates a new image from a commit config.
|
|
func (i *ImageService) CommitImage(c backend.CommitConfig) (image.ID, error) {
|
|
return "", errdefs.NotImplemented(errors.New("not implemented"))
|
|
}
|
|
|
|
// CommitBuildStep is used by the builder to create an image for each step in
|
|
// the build.
|
|
//
|
|
// This method is different from CreateImageFromContainer:
|
|
// - it doesn't attempt to validate container state
|
|
// - it doesn't send a commit action to metrics
|
|
// - it doesn't log a container commit event
|
|
//
|
|
// This is a temporary shim. Should be removed when builder stops using commit.
|
|
func (i *ImageService) CommitBuildStep(c backend.CommitConfig) (image.ID, error) {
|
|
return "", errdefs.NotImplemented(errors.New("not implemented"))
|
|
}
|