mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
3bf0ca31cf
Signed-off-by: David Calavera <david.calavera@gmail.com>
24 lines
544 B
Go
24 lines
544 B
Go
// +build !experimental
|
|
|
|
package daemon
|
|
|
|
import (
|
|
"fmt"
|
|
"path/filepath"
|
|
|
|
"github.com/docker/docker/runconfig"
|
|
"github.com/docker/docker/volume"
|
|
"github.com/docker/docker/volume/drivers"
|
|
)
|
|
|
|
func getVolumeDriver(_ string) (volume.Driver, error) {
|
|
return volumedrivers.Lookup(volume.DefaultDriverName)
|
|
}
|
|
|
|
func parseVolumeSource(spec string, _ *runconfig.Config) (string, string, error) {
|
|
if !filepath.IsAbs(spec) {
|
|
return "", "", fmt.Errorf("cannot bind mount volume: %s volume paths must be absolute.", spec)
|
|
}
|
|
|
|
return "", spec, nil
|
|
}
|