Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Image ¶
type Image struct { // RootFS contains information about the image's RootFS, including the // layer IDs. RootFS *RootFS `json:"rootfs,omitempty"` History []History `json:"history,omitempty"` // contains filtered or unexported fields }
Image stores partial docker image configuration
func NewFromJSON ¶
NewFromJSON creates an Image configuration from json.
type RootFS ¶
type RootFS struct { Type string `json:"type"` DiffIDs []digest.Digest `json:"diff_ids,omitempty"` }
RootFS describes images root filesystem This is currently a placeholder that only supports layers. In the future this can be made into an interface that supports different implementations.
Click to show internal directories.
Click to hide internal directories.