import "github.com/docker/docker/daemon/graphdriver/fuse-overlayfs"
func Init(home string, options []string, uidMaps, gidMaps []idtools.IDMap) (graphdriver.Driver, error)
Init returns the naive diff driver for fuse-overlayfs. If fuse-overlayfs is not supported on the host, the error graphdriver.ErrNotSupported is returned.
type Driver struct {
// contains filtered or unexported fields
}
Driver contains information about the home directory and the list of active mounts that are created using this driver.
ApplyDiff applies the new layer into a root
Changes produces a list of changes between the specified layer and its parent layer. If parent is "", then all changes will be ADD changes.
Cleanup any state created by overlay which should be cleaned when daemon is being shutdown. For now, we just have to unmount the bind mounted we had created.
func (d *Driver) Create(id, parent string, opts *graphdriver.CreateOpts) (retErr error)
Create is used to create the upper, lower, and merge directories required for overlay fs for a given id. The parent filesystem is used to configure these directories for the overlay.
func (d *Driver) CreateReadWrite(id, parent string, opts *graphdriver.CreateOpts) error
CreateReadWrite creates a layer that is writable for use as a container file system.
Diff produces an archive of the changes between the specified layer and its parent layer which may be "".
DiffSize calculates the changes between the specified id and its parent and returns the size in bytes of the changes relative to its base filesystem directory.
Exists checks to see if the id is already mounted.
func (d *Driver) Get(id, mountLabel string) (_ containerfs.ContainerFS, retErr error)
Get creates and mounts the required file system for the given id and returns the mount path.
GetMetadata returns metadata about the overlay driver such as the LowerDir, UpperDir, WorkDir, and MergeDir used to store data.
Put unmounts the mount path created for the give id. It also removes the 'merged' directory to force the kernel to unmount the overlay mount in other namespaces.
Remove cleans the directories that are created for this id.
Status returns current driver information in a two dimensional string array.
Package fuseoverlayfs imports 26 packages (graph) and is imported by 1 packages. Updated 2020-12-24. Refresh now. Tools for package owners.