mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f8ed19c8b4
Ubuntu kernel supports overlayfs in user namespaces. However, Docker had previously crafting overlay opaques directly using mknod(2) and setxattr(2), which are not supported in userns. Tested with LXD, Ubuntu 18.04, kernel 4.15.0-36-generic #39-Ubuntu. Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>
7 lines
185 B
Go
7 lines
185 B
Go
// +build !linux
|
|
|
|
package archive // import "github.com/docker/docker/pkg/archive"
|
|
|
|
func getWhiteoutConverter(format WhiteoutFormat, inUserNS bool) tarWhiteoutConverter {
|
|
return nil
|
|
}
|