image_history.go 323 B

123456789
  1. package containerd
  2. import imagetype "github.com/docker/docker/api/types/image"
  3. // ImageHistory returns a slice of ImageHistory structures for the specified
  4. // image name by walking the image lineage.
  5. func (i *ImageService) ImageHistory(name string) ([]*imagetype.HistoryResponseItem, error) {
  6. panic("not implemented")
  7. }