Merge component 'engine' from git@github.com:docker/engine 18.09

This commit is contained in:
GordonTheTurtle
2019-08-08 21:03:17 +00:00

View File

@ -10,3 +10,7 @@ func chroot(path string) error {
}
return unix.Chdir("/")
}
func realChroot(path string) error {
return chroot(path)
}