github.com/jfrazelle/docker@v1.1.2-0.20210712172922-bf78e25fe508/volume/service/store_unix.go (about) 1 // +build linux freebsd darwin 2 3 package service // import "github.com/docker/docker/volume/service" 4 5 // normalizeVolumeName is a platform specific function to normalize the name 6 // of a volume. This is a no-op on Unix-like platforms 7 func normalizeVolumeName(name string) string { 8 return name 9 }