Versions in this module Expand all Collapse all v1 v1.3.0 Oct 15, 2014 Changes in this version + type Repository struct + func NewRepository(configPath string, driver graphdriver.Driver) (*Repository, error) + func (r *Repository) Add(volume *Volume) error + func (r *Repository) Delete(path string) error + func (r *Repository) FindOrCreateVolume(path string, writable bool) (*Volume, error) + func (r *Repository) Get(path string) *Volume + func (r *Repository) Remove(volume *Volume) + type Volume struct + ID string + IsBindMount bool + Path string + Writable bool + func (v *Volume) AddContainer(containerId string) + func (v *Volume) Containers() []string + func (v *Volume) FromDisk() error + func (v *Volume) IsDir() (bool, error) + func (v *Volume) RemoveContainer(containerId string) + func (v *Volume) ToDisk() error