moby/layer/layer_unix.go

10 lines
246 B
Go
Raw Normal View History

//go:build linux || freebsd || darwin || openbsd
package layer // import "github.com/docker/docker/layer"
import "github.com/docker/docker/pkg/stringid"
func (ls *layerStore) mountID(name string) string {
return stringid.GenerateRandomID()
}