mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f342b27145
Windows base layers are no longer the special "layers+base" type, so we can remove all the special handling for that. Signed-off-by: Stefan J. Wernli <swernli@microsoft.com>
29 lines
845 B
Go
29 lines
845 B
Go
package image
|
|
|
|
import "github.com/docker/docker/layer"
|
|
|
|
// TypeLayers is used for RootFS.Type for filesystems organized into layers.
|
|
const TypeLayers = "layers"
|
|
|
|
// 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.
|
|
type RootFS struct {
|
|
Type string `json:"type"`
|
|
DiffIDs []layer.DiffID `json:"diff_ids,omitempty"`
|
|
}
|
|
|
|
// NewRootFS returns empty RootFS struct
|
|
func NewRootFS() *RootFS {
|
|
return &RootFS{Type: TypeLayers}
|
|
}
|
|
|
|
// Append appends a new diffID to rootfs
|
|
func (r *RootFS) Append(id layer.DiffID) {
|
|
r.DiffIDs = append(r.DiffIDs, id)
|
|
}
|
|
|
|
// ChainID returns the ChainID for the top layer in RootFS.
|
|
func (r *RootFS) ChainID() layer.ChainID {
|
|
return layer.CreateChainID(r.DiffIDs)
|
|
}
|