containerfs_unix.go 299 B

1234567891011
  1. //go:build !windows
  2. // +build !windows
  3. package containerfs // import "github.com/docker/docker/pkg/containerfs"
  4. import "path/filepath"
  5. // CleanScopedPath preappends a to combine with a mnt path.
  6. func CleanScopedPath(path string) string {
  7. return filepath.Join(string(filepath.Separator), path)
  8. }