2022-07-18 06:51:49 -04:00
|
|
|
package containerd
|
|
|
|
|
2022-08-10 09:22:32 -04:00
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
|
|
|
imagetype "github.com/docker/docker/api/types/image"
|
|
|
|
"github.com/docker/docker/errdefs"
|
|
|
|
)
|
2022-07-18 06:51:49 -04:00
|
|
|
|
|
|
|
// ImageHistory returns a slice of ImageHistory structures for the specified
|
|
|
|
// image name by walking the image lineage.
|
|
|
|
func (i *ImageService) ImageHistory(name string) ([]*imagetype.HistoryResponseItem, error) {
|
2022-08-10 09:22:32 -04:00
|
|
|
return nil, errdefs.NotImplemented(errors.New("not implemented"))
|
2022-07-18 06:51:49 -04:00
|
|
|
}
|