1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #39202 from AkihiroSuda/bk-ramdisk

builder-next: support DOCKER_RAMDISK
This commit is contained in:
Brian Goff 2019-05-21 11:27:56 -07:00 committed by GitHub
commit 12b837e474
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,6 +31,7 @@ func newExecutor(root, cgroupParent string, net libnetwork.NetworkController, ro
CommandCandidates: []string{"runc"},
DefaultCgroupParent: cgroupParent,
Rootless: rootless,
NoPivot: os.Getenv("DOCKER_RAMDISK") != "",
}, networkProviders)
}