diff --git a/daemon/graphdriver/lcow/lcow.go b/daemon/graphdriver/lcow/lcow.go index b505068767..86beb3d5f0 100644 --- a/daemon/graphdriver/lcow/lcow.go +++ b/daemon/graphdriver/lcow/lcow.go @@ -68,12 +68,12 @@ import ( "time" "github.com/Microsoft/hcsshim" + "github.com/Microsoft/opengcs/client" "github.com/docker/docker/daemon/graphdriver" "github.com/docker/docker/pkg/archive" "github.com/docker/docker/pkg/idtools" "github.com/docker/docker/pkg/ioutils" "github.com/docker/docker/pkg/system" - "github.com/jhowardmsft/opengcs/gogcs/client" "github.com/sirupsen/logrus" ) diff --git a/daemon/start_windows.go b/daemon/start_windows.go index fe8fc0e5f3..098380d00b 100644 --- a/daemon/start_windows.go +++ b/daemon/start_windows.go @@ -6,10 +6,10 @@ import ( "path/filepath" "strings" + "github.com/Microsoft/opengcs/client" "github.com/docker/docker/container" "github.com/docker/docker/layer" "github.com/docker/docker/libcontainerd" - "github.com/jhowardmsft/opengcs/gogcs/client" "golang.org/x/sys/windows/registry" ) diff --git a/libcontainerd/client_windows.go b/libcontainerd/client_windows.go index 3c17803615..db84061254 100644 --- a/libcontainerd/client_windows.go +++ b/libcontainerd/client_windows.go @@ -15,9 +15,9 @@ import ( "golang.org/x/net/context" "github.com/Microsoft/hcsshim" + opengcs "github.com/Microsoft/opengcs/client" "github.com/docker/docker/pkg/sysinfo" "github.com/docker/docker/pkg/system" - opengcs "github.com/jhowardmsft/opengcs/gogcs/client" specs "github.com/opencontainers/runtime-spec/specs-go" "github.com/sirupsen/logrus" ) diff --git a/libcontainerd/types_windows.go b/libcontainerd/types_windows.go index 817a332145..1ffe0f40aa 100644 --- a/libcontainerd/types_windows.go +++ b/libcontainerd/types_windows.go @@ -2,7 +2,7 @@ package libcontainerd import ( "github.com/Microsoft/hcsshim" - opengcs "github.com/jhowardmsft/opengcs/gogcs/client" + opengcs "github.com/Microsoft/opengcs/client" "github.com/opencontainers/runtime-spec/specs-go" )