summaryrefslogtreecommitdiff
path: root/layer/layer_unix.go
blob: d77e2fc66e0a7aefab2b62ad6d19932f169cde98 (plain)
1
2
3
4
5
6
7
8
9
// +build linux freebsd darwin openbsd

package layer

import "github.com/docker/docker/pkg/stringid"

func (ls *layerStore) mountID(name string) string {
	return stringid.GenerateRandomID()
}