Documentation ¶
Index ¶
- func InitDiff(home string, options []string, uidMaps, gidMaps []idtools.IDMap) (graphdriver.Driver, error)
- func InitFilter(home string, options []string, uidMaps, gidMaps []idtools.IDMap) (graphdriver.Driver, error)
- type CustomImageInfo
- type Driver
- func (d *Driver) ApplyDiff(id, parent string, diff archive.Reader) (size int64, err error)
- func (d *Driver) Changes(id, parent string) ([]archive.Change, error)
- func (d *Driver) Cleanup() error
- func (d *Driver) Create(id, parent, mountLabel string) error
- func (d *Driver) Diff(id, parent string) (arch archive.Archive, err error)
- func (d *Driver) DiffPath(id string) (path string, release func() error, err error)
- func (d *Driver) DiffSize(id, parent string) (size int64, err error)
- func (d *Driver) Exists(id string) bool
- func (d *Driver) Get(id, mountLabel string) (string, error)
- func (d *Driver) GetCustomImageInfos() ([]CustomImageInfo, error)
- func (d *Driver) GetMetadata(id string) (map[string]string, error)
- func (d *Driver) Put(id string) error
- func (d *Driver) Remove(id string) error
- func (d *Driver) Status() [][2]string
- func (d *Driver) String() string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func InitDiff ¶
func InitDiff(home string, options []string, uidMaps, gidMaps []idtools.IDMap) (graphdriver.Driver, error)
InitDiff returns a new Windows differencing disk driver.
func InitFilter ¶
func InitFilter(home string, options []string, uidMaps, gidMaps []idtools.IDMap) (graphdriver.Driver, error)
InitFilter returns a new Windows storage filter driver.
Types ¶
type CustomImageInfo ¶ added in v1.10.0
type CustomImageInfo struct { ID string Name string Version string Path string Size int64 CreatedTime time.Time }
CustomImageInfo is the object returned by the driver describing the base image.
type Driver ¶ added in v1.9.0
type Driver struct { // Mutex protects concurrent modification to active sync.Mutex // contains filtered or unexported fields }
Driver represents a windows graph driver.
func (*Driver) ApplyDiff ¶ added in v1.9.0
ApplyDiff extracts the changeset from the given diff into the layer with the specified id and parent, returning the size of the new layer in bytes.
func (*Driver) Changes ¶ added in v1.9.0
Changes produces a list of changes between the specified layer and its parent layer. If parent is "", then all changes will be ADD changes.
func (*Driver) Cleanup ¶ added in v1.9.0
Cleanup ensures the information the driver stores is properly removed.
func (*Driver) Diff ¶ added in v1.9.0
Diff produces an archive of the changes between the specified layer and its parent layer which may be "".
func (*Driver) DiffPath ¶ added in v1.10.0
DiffPath returns a directory that contains files needed to construct layer diff.
func (*Driver) DiffSize ¶ added in v1.9.0
DiffSize calculates the changes between the specified layer and its parent and returns the size in bytes of the changes relative to its base filesystem directory.
func (*Driver) Exists ¶ added in v1.9.0
Exists returns true if the given id is registered with this driver.
func (*Driver) Get ¶ added in v1.9.0
Get returns the rootfs path for the id. This will mount the dir at it's given path.
func (*Driver) GetCustomImageInfos ¶ added in v1.10.0
func (d *Driver) GetCustomImageInfos() ([]CustomImageInfo, error)
GetCustomImageInfos returns the image infos for window specific base images which should always be present.
func (*Driver) GetMetadata ¶ added in v1.9.0
GetMetadata returns custom driver information.