зеркало из https://github.com/microsoft/docker.git
Merge pull request #4779 from vieux/symlink_mtab
symlink /etc/mtab and /proc/mounts
This commit is contained in:
Коммит
b5caa5053a
|
@ -259,6 +259,7 @@ func SetupInitLayer(initLayer string) error {
|
|||
"/etc/hosts": "file",
|
||||
"/etc/hostname": "file",
|
||||
"/dev/console": "file",
|
||||
"/etc/mtab": "/proc/mounts",
|
||||
// "var/run": "dir",
|
||||
// "var/lock": "dir",
|
||||
} {
|
||||
|
@ -285,6 +286,10 @@ func SetupInitLayer(initLayer string) error {
|
|||
return err
|
||||
}
|
||||
f.Close()
|
||||
default:
|
||||
if err := os.Symlink(typ, path.Join(initLayer, pth)); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
} else {
|
||||
return err
|
||||
|
|
Загрузка…
Ссылка в новой задаче