1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

graphdriver: promote overlay above vfs

It's about time to let folks not hit 'vfs', when 'overlay' is supported
on their kernel. Especially now that v3.18.y is a long-term kernel.

Signed-off-by: Vincent Batts <vbatts@redhat.com>
This commit is contained in:
Vincent Batts 2015-03-31 15:10:23 -04:00
parent ddbc68f564
commit 2c72ff1dbf

View file

@ -39,9 +39,8 @@ var (
"aufs",
"btrfs",
"devicemapper",
"vfs",
// experimental, has to be enabled manually for now
"overlay",
"vfs",
}
ErrNotSupported = errors.New("driver not supported")