mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9a849cc83a
Currently only provides the existing "platform" option, but more options will be added in follow-ups. Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com> Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
11 lines
346 B
Go
11 lines
346 B
Go
package containerd
|
|
|
|
import (
|
|
imagetype "github.com/docker/docker/api/types/image"
|
|
"github.com/docker/docker/image"
|
|
)
|
|
|
|
// GetImage returns an image corresponding to the image referred to by refOrID.
|
|
func (i *ImageService) GetImage(refOrID string, options imagetype.GetImageOpts) (retImg *image.Image, retErr error) {
|
|
panic("not implemented")
|
|
}
|