mirror of
https://github.com/docker/cli.git
synced 2026-01-13 18:22:35 +03:00
Signed-off-by: Yong Tang <yong.tang.github@outlook.com> Upstream-commit: 4785f1a7ab7ec857dc3ca849ee6ecadf519ef30e Component: engine
10 lines
193 B
Go
10 lines
193 B
Go
// +build linux freebsd darwin openbsd
|
|
|
|
package layer
|
|
|
|
import "github.com/docker/docker/pkg/stringid"
|
|
|
|
func (ls *layerStore) mountID(name string) string {
|
|
return stringid.GenerateRandomID()
|
|
}
|