blob: c6d51e07101d209289993e98f4f87b8c4da2c8c7 [file] [log] [blame]
// +build linux freebsd darwin
package mounts // import "github.com/docker/docker/volume/mounts"
import (
"fmt"
"path/filepath"
"strings"
)
func (p *linuxParser) HasResource(m *MountPoint, absolutePath string) bool {
relPath, err := filepath.Rel(m.Destination, absolutePath)
return err == nil && relPath != ".." && !strings.HasPrefix(relPath, fmt.Sprintf("..%c", filepath.Separator))
}
func (p *windowsParser) HasResource(m *MountPoint, absolutePath string) bool {
return false
}