2015-09-16 17:18:24 -04:00
|
|
|
// Package local provides the default implementation for volumes. It
|
|
|
|
// is used to mount data volume containers and directories local to
|
|
|
|
// the host server.
|
2018-02-05 16:05:59 -05:00
|
|
|
package local // import "github.com/docker/docker/volume/local"
|
2015-09-16 17:18:24 -04:00
|
|
|
|
|
|
|
import (
|
2017-05-17 17:19:13 -04:00
|
|
|
"os"
|
|
|
|
"syscall"
|
|
|
|
"time"
|
2018-12-21 20:28:30 -05:00
|
|
|
|
|
|
|
"github.com/docker/docker/errdefs"
|
|
|
|
"github.com/pkg/errors"
|
2015-09-16 17:18:24 -04:00
|
|
|
)
|
|
|
|
|
2016-02-11 21:48:16 -05:00
|
|
|
type optsConfig struct{}
|
|
|
|
|
|
|
|
func setOpts(v *localVolume, opts map[string]string) error {
|
|
|
|
if len(opts) > 0 {
|
2018-12-21 20:28:30 -05:00
|
|
|
return errdefs.InvalidParameter(errors.New("options are not supported on this platform"))
|
2016-02-11 21:48:16 -05:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-08-09 15:53:09 -04:00
|
|
|
func (v *localVolume) needsMount() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-02-11 21:48:16 -05:00
|
|
|
func (v *localVolume) mount() error {
|
|
|
|
return nil
|
|
|
|
}
|
2020-09-19 12:45:41 -04:00
|
|
|
func (v *localVolume) unmount() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func unmount(_ string) {}
|
2017-05-17 17:19:13 -04:00
|
|
|
|
2020-08-09 15:53:09 -04:00
|
|
|
func (v *localVolume) postMount() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-05-17 17:19:13 -04:00
|
|
|
func (v *localVolume) CreatedAt() (time.Time, error) {
|
|
|
|
fileInfo, err := os.Stat(v.path)
|
|
|
|
if err != nil {
|
|
|
|
return time.Time{}, err
|
|
|
|
}
|
|
|
|
ft := fileInfo.Sys().(*syscall.Win32FileAttributeData).CreationTime
|
|
|
|
return time.Unix(0, ft.Nanoseconds()), nil
|
|
|
|
}
|