Move libcontainerd/remote to daemon/internal/libcontainerd/remote

Signed-off-by: Derek McGowan <derek@mcg.dev>
This commit is contained in:
Derek McGowan
2025-06-27 14:28:08 -07:00
parent dd1656e6bc
commit 4e8bd050bf
8 changed files with 4 additions and 4 deletions

View File

@@ -29,11 +29,11 @@ import (
"github.com/docker/docker/daemon/config"
"github.com/docker/docker/daemon/container"
"github.com/docker/docker/daemon/initlayer"
"github.com/docker/docker/daemon/internal/libcontainerd/remote"
"github.com/docker/docker/errdefs"
"github.com/docker/docker/internal/nlwrap"
"github.com/docker/docker/internal/otelutil"
"github.com/docker/docker/internal/usergroup"
"github.com/docker/docker/libcontainerd/remote"
"github.com/docker/docker/libnetwork"
nwconfig "github.com/docker/docker/libnetwork/config"
"github.com/docker/docker/libnetwork/drivers/bridge"

View File

@@ -17,8 +17,8 @@ import (
"github.com/docker/docker/daemon/config"
"github.com/docker/docker/daemon/container"
"github.com/docker/docker/daemon/internal/libcontainerd/local"
"github.com/docker/docker/daemon/internal/libcontainerd/remote"
"github.com/docker/docker/daemon/network"
"github.com/docker/docker/libcontainerd/remote"
"github.com/docker/docker/libnetwork"
nwconfig "github.com/docker/docker/libnetwork/config"
winlibnetwork "github.com/docker/docker/libnetwork/drivers/windows"

View File

@@ -4,7 +4,7 @@ import (
"context"
containerd "github.com/containerd/containerd/v2/client"
"github.com/docker/docker/libcontainerd/remote"
"github.com/docker/docker/daemon/internal/libcontainerd/remote"
libcontainerdtypes "github.com/docker/docker/libcontainerd/types"
)

View File

@@ -5,7 +5,7 @@ import (
containerd "github.com/containerd/containerd/v2/client"
"github.com/docker/docker/daemon/internal/libcontainerd/local"
"github.com/docker/docker/libcontainerd/remote"
"github.com/docker/docker/daemon/internal/libcontainerd/remote"
libcontainerdtypes "github.com/docker/docker/libcontainerd/types"
"github.com/docker/docker/pkg/system"
)