mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
runtime: no build tags for vfs driver
Docker-DCO-1.1-Signed-off-by: Vincent Batts <vbatts@redhat.com> (github: vbatts)
This commit is contained in:
parent
670ce98c60
commit
448b64164d
3 changed files with 1 additions and 12 deletions
|
@ -160,11 +160,6 @@ export DOCKER_BUILDTAGS='apparmor'
|
|||
There are build tags for disabling graphdrivers as well. By default, support
|
||||
for all graphdrivers are built in.
|
||||
|
||||
To disable vfs
|
||||
```bash
|
||||
export DOCKER_BUILDTAGS='exclude_graphdriver_vfs'
|
||||
```
|
||||
|
||||
To disable devicemapper
|
||||
```bash
|
||||
export DOCKER_BUILDTAGS='exclude_graphdriver_devicemapper'
|
||||
|
|
|
@ -17,6 +17,7 @@ import (
|
|||
"github.com/dotcloud/docker/runtime/execdriver/lxc"
|
||||
"github.com/dotcloud/docker/runtime/graphdriver"
|
||||
_ "github.com/dotcloud/docker/runtime/graphdriver/btrfs"
|
||||
_ "github.com/dotcloud/docker/runtime/graphdriver/vfs"
|
||||
_ "github.com/dotcloud/docker/runtime/networkdriver/lxc"
|
||||
"github.com/dotcloud/docker/runtime/networkdriver/portallocator"
|
||||
"github.com/dotcloud/docker/utils"
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
// +build !exclude_graphdriver_vfs
|
||||
|
||||
package runtime
|
||||
|
||||
import (
|
||||
_ "github.com/dotcloud/docker/runtime/graphdriver/vfs"
|
||||
)
|
Loading…
Reference in a new issue