The image store abstracts image handling. It keeps track of the available images, and makes it possible to delete existing images or register new ones. The image store holds references to the underlying layers for each image. The image/v1 package provides compatibility functions for interoperating with older (non-content-addressable) image structures. Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com> Upstream-commit: 01ba0a935b9227583ec05a96e85273cc2276bb93 Component: engine
9 lines
177 B
Go
9 lines
177 B
Go
package image
|
|
|
|
import "github.com/docker/docker/layer"
|
|
|
|
// Append appends a new diffID to rootfs
|
|
func (r *RootFS) Append(id layer.DiffID) {
|
|
r.DiffIDs = append(r.DiffIDs, id)
|
|
}
|