moby--moby/layer/layer_unix.go

11 lines
285 B
Go

//go:build linux || freebsd || darwin || openbsd
// +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()
}