package graphdriver
import "github.com/dotcloud/docker/daemon/graphdriver"
Index ¶
- Constants
- Variables
- func MakePrivate(mountPoint string) error
- func Register(name string, initFunc InitFunc) error
- type Differ
- type Driver
- func GetDriver(name, home string, options []string) (Driver, error)
- func New(root string, options []string) (driver Driver, err error)
- type FsMagic
- type InitFunc
Constants ¶
Variables ¶
var ( DefaultDriver string ErrNotSupported = errors.New("driver not supported") ErrPrerequisites = errors.New("prerequisites for driver not satisfied (wrong filesystem?)") ErrIncompatibleFS = fmt.Errorf("backing file system is unsupported for this graph driver") )
Functions ¶
func MakePrivate ¶
func Register ¶
Types ¶
type Differ ¶
type Differ interface { Diff(id string) (archive.Archive, error) Changes(id string) ([]archive.Change, error) ApplyDiff(id string, diff archive.ArchiveReader) error DiffSize(id string) (bytes int64, err error) }
type Driver ¶
type Driver interface { String() string Create(id, parent string) error Remove(id string) error Get(id, mountLabel string) (dir string, err error) Put(id string) Exists(id string) bool Status() [][2]string Cleanup() error }
func GetDriver ¶
func New ¶
type FsMagic ¶
type FsMagic uint64
type InitFunc ¶
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
daemon/graphdriver/aufs | |
daemon/graphdriver/btrfs | |
daemon/graphdriver/devmapper | |
daemon/graphdriver/graphtest | |
daemon/graphdriver/vfs |
- Version
- v1.0.1
- Published
- Jun 19, 2014
- Platform
- js/wasm
- Imports
- 6 packages
- Last checked
- 10 seconds ago –
Tools for package owners.