mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
23e5c94cfb
Adds a new overlay driver which uses multiple lower directories to create the union fs. Additionally it uses symlinks and relative mount paths to allow a depth of 128 and stay within the mount page size limit. Diffs and done directly over a single directory allowing diffs to be done efficiently and without the need fo the naive diff driver. Signed-off-by: Derek McGowan <derek@mcgstyle.net> (github: dmcgowan)
9 lines
227 B
Go
9 lines
227 B
Go
// +build !exclude_graphdriver_overlay,linux
|
|
|
|
package register
|
|
|
|
import (
|
|
// register the overlay graphdriver
|
|
_ "github.com/docker/docker/daemon/graphdriver/overlay"
|
|
_ "github.com/docker/docker/daemon/graphdriver/overlay2"
|
|
)
|