1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/daemon/graphdriver/register/register_overlay2.go
Kir Kolyshkin d014be5426 daemon/graphdriver/register: separate overlay2
Make it possible to disable overlay and overlay2 separately.

With this commit, we now have `exclude_graphdriver_overlay` and
`exclude_graphdriver_overlay2` build tags for the engine, which
is in line with any other graph driver.

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
2017-11-15 00:06:00 -08:00

8 lines
172 B
Go

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