mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
88e4dff9a9
Signed-off-by: Brian Goff <cpuguy83@gmail.com>
23 lines
732 B
Go
23 lines
732 B
Go
//go:generate pluginrpc-gen -i $GOFILE -o proxy.go -type VolumeDriver -name VolumeDriver
|
|
|
|
package volumedrivers
|
|
|
|
import "github.com/docker/docker/volume"
|
|
|
|
func NewVolumeDriver(name string, c client) volume.Driver {
|
|
proxy := &volumeDriverProxy{c}
|
|
return &volumeDriverAdapter{name, proxy}
|
|
}
|
|
|
|
type VolumeDriver interface {
|
|
// Create a volume with the given name
|
|
Create(name string) (err error)
|
|
// Remove the volume with the given name
|
|
Remove(name string) (err error)
|
|
// Get the mountpoint of the given volume
|
|
Path(name string) (mountpoint string, err error)
|
|
// Mount the given volume and return the mountpoint
|
|
Mount(name string) (mountpoint string, err error)
|
|
// Unmount the given volume
|
|
Unmount(name string) (err error)
|
|
}
|