Move internal/cleanups to daemon/internal/cleanups

Signed-off-by: Derek McGowan <derek@mcg.dev>
This commit is contained in:
Derek McGowan
2025-07-24 12:12:54 -07:00
parent 222b2b8b2f
commit ca9c4dffb7
6 changed files with 4 additions and 4 deletions

View File

@@ -9,9 +9,9 @@ import (
"strings"
"github.com/containerd/log"
"github.com/docker/docker/daemon/internal/cleanups"
"github.com/docker/docker/daemon/libnetwork/drivers/bridge/internal/firewaller"
"github.com/docker/docker/daemon/libnetwork/internal/nftables"
"github.com/docker/docker/internal/cleanups"
"go.opentelemetry.io/otel"
)

View File

@@ -7,7 +7,7 @@ import (
"strings"
"github.com/containerd/log"
"github.com/docker/docker/internal/cleanups"
"github.com/docker/docker/daemon/internal/cleanups"
"github.com/pkg/errors"
"golang.org/x/sys/windows"
)

View File

@@ -11,9 +11,9 @@ import (
"github.com/containerd/log"
"github.com/docker/docker/daemon/container"
"github.com/docker/docker/daemon/internal/cleanups"
"github.com/docker/docker/daemon/internal/idtools"
volumemounts "github.com/docker/docker/daemon/volume/mounts"
"github.com/docker/docker/internal/cleanups"
"github.com/moby/moby/api/types/events"
mounttypes "github.com/moby/moby/api/types/mount"
"github.com/pkg/errors"

View File

@@ -5,9 +5,9 @@ import (
"github.com/containerd/log"
"github.com/docker/docker/daemon/container"
"github.com/docker/docker/daemon/internal/cleanups"
"github.com/docker/docker/daemon/internal/idtools"
volumemounts "github.com/docker/docker/daemon/volume/mounts"
"github.com/docker/docker/internal/cleanups"
"github.com/moby/moby/api/types/mount"
)