Merge pull request #13965 from cpuguy83/fix_windows_vfs_import
Fix circular import for windows vfs graphdriver Upstream-commit: de6e6d4b281709033c44d197a9e46323f38928f1 Component: engine
This commit is contained in:
@ -19,6 +19,7 @@ import (
|
||||
"github.com/docker/docker/daemon/execdriver"
|
||||
"github.com/docker/docker/daemon/execdriver/execdrivers"
|
||||
"github.com/docker/docker/daemon/graphdriver"
|
||||
_ "github.com/docker/docker/daemon/graphdriver/vfs"
|
||||
"github.com/docker/docker/daemon/logger"
|
||||
"github.com/docker/docker/daemon/network"
|
||||
"github.com/docker/docker/graph"
|
||||
|
||||
@ -13,7 +13,6 @@ import (
|
||||
"github.com/Sirupsen/logrus"
|
||||
"github.com/docker/docker/autogen/dockerversion"
|
||||
"github.com/docker/docker/daemon/graphdriver"
|
||||
_ "github.com/docker/docker/daemon/graphdriver/vfs"
|
||||
"github.com/docker/docker/graph"
|
||||
"github.com/docker/docker/pkg/archive"
|
||||
"github.com/docker/docker/pkg/fileutils"
|
||||
|
||||
@ -1,11 +1,5 @@
|
||||
package graphdriver
|
||||
|
||||
import (
|
||||
_ "github.com/docker/docker/daemon/graphdriver/vfs"
|
||||
|
||||
// TODO Windows - Add references to real graph driver when PR'd
|
||||
)
|
||||
|
||||
type DiffDiskDriver interface {
|
||||
Driver
|
||||
CopyDiff(id, sourceId string) error
|
||||
|
||||
Reference in New Issue
Block a user