Merge pull request #35504 from kolyshkin/sep-o2

daemon/graphdriver/register: separate overlay2
This commit is contained in:
Brian Goff 2017-11-15 09:21:08 -05:00 committed by GitHub
commit fa1054843f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View File

@ -5,5 +5,4 @@ package register
import (
// register the overlay graphdriver
_ "github.com/docker/docker/daemon/graphdriver/overlay"
_ "github.com/docker/docker/daemon/graphdriver/overlay2"
)

View File

@ -0,0 +1,8 @@
// +build !exclude_graphdriver_overlay2,linux
package register
import (
// register the overlay2 graphdriver
_ "github.com/docker/docker/daemon/graphdriver/overlay2"
)