Docker-DCO-1.1-Signed-off-by: Vincent Batts <vbatts@redhat.com> (github: vbatts)
| ... | ... |
@@ -160,11 +160,6 @@ export DOCKER_BUILDTAGS='apparmor' |
| 160 | 160 |
There are build tags for disabling graphdrivers as well. By default, support |
| 161 | 161 |
for all graphdrivers are built in. |
| 162 | 162 |
|
| 163 |
-To disable vfs |
|
| 164 |
-```bash |
|
| 165 |
-export DOCKER_BUILDTAGS='exclude_graphdriver_vfs' |
|
| 166 |
-``` |
|
| 167 |
- |
|
| 168 | 163 |
To disable devicemapper |
| 169 | 164 |
```bash |
| 170 | 165 |
export DOCKER_BUILDTAGS='exclude_graphdriver_devicemapper' |
| ... | ... |
@@ -17,6 +17,7 @@ import ( |
| 17 | 17 |
"github.com/dotcloud/docker/runtime/execdriver/lxc" |
| 18 | 18 |
"github.com/dotcloud/docker/runtime/graphdriver" |
| 19 | 19 |
_ "github.com/dotcloud/docker/runtime/graphdriver/btrfs" |
| 20 |
+ _ "github.com/dotcloud/docker/runtime/graphdriver/vfs" |
|
| 20 | 21 |
_ "github.com/dotcloud/docker/runtime/networkdriver/lxc" |
| 21 | 22 |
"github.com/dotcloud/docker/runtime/networkdriver/portallocator" |
| 22 | 23 |
"github.com/dotcloud/docker/utils" |