Move internal/directory to daemon/internal/directory

Signed-off-by: Derek McGowan <derek@mcg.dev>
This commit is contained in:
Derek McGowan
2025-07-15 10:45:15 -07:00
parent 33d824b838
commit daeaac0d3c
8 changed files with 4 additions and 4 deletions

View File

@@ -15,10 +15,10 @@ import (
"github.com/containerd/log" "github.com/containerd/log"
"github.com/docker/docker/daemon/graphdriver" "github.com/docker/docker/daemon/graphdriver"
"github.com/docker/docker/daemon/graphdriver/overlayutils" "github.com/docker/docker/daemon/graphdriver/overlayutils"
"github.com/docker/docker/daemon/internal/directory"
"github.com/docker/docker/daemon/internal/fstype" "github.com/docker/docker/daemon/internal/fstype"
"github.com/docker/docker/daemon/internal/mountref" "github.com/docker/docker/daemon/internal/mountref"
"github.com/docker/docker/internal/containerfs" "github.com/docker/docker/internal/containerfs"
"github.com/docker/docker/internal/directory"
"github.com/docker/docker/pkg/parsers/kernel" "github.com/docker/docker/pkg/parsers/kernel"
"github.com/moby/go-archive" "github.com/moby/go-archive"
"github.com/moby/go-archive/chrootarchive" "github.com/moby/go-archive/chrootarchive"

View File

@@ -18,11 +18,11 @@ import (
"github.com/containerd/log" "github.com/containerd/log"
"github.com/docker/docker/daemon/graphdriver" "github.com/docker/docker/daemon/graphdriver"
"github.com/docker/docker/daemon/graphdriver/overlayutils" "github.com/docker/docker/daemon/graphdriver/overlayutils"
"github.com/docker/docker/daemon/internal/directory"
"github.com/docker/docker/daemon/internal/fstype" "github.com/docker/docker/daemon/internal/fstype"
"github.com/docker/docker/daemon/internal/mountref" "github.com/docker/docker/daemon/internal/mountref"
"github.com/docker/docker/daemon/internal/quota" "github.com/docker/docker/daemon/internal/quota"
"github.com/docker/docker/internal/containerfs" "github.com/docker/docker/internal/containerfs"
"github.com/docker/docker/internal/directory"
"github.com/docker/go-units" "github.com/docker/go-units"
"github.com/moby/go-archive" "github.com/moby/go-archive"
"github.com/moby/go-archive/chrootarchive" "github.com/moby/go-archive/chrootarchive"

View File

@@ -9,9 +9,9 @@ import (
"github.com/containerd/log" "github.com/containerd/log"
"github.com/docker/docker/api/types/filters" "github.com/docker/docker/api/types/filters"
volumetypes "github.com/docker/docker/api/types/volume" volumetypes "github.com/docker/docker/api/types/volume"
"github.com/docker/docker/daemon/internal/directory"
"github.com/docker/docker/daemon/volume" "github.com/docker/docker/daemon/volume"
"github.com/docker/docker/errdefs" "github.com/docker/docker/errdefs"
"github.com/docker/docker/internal/directory"
) )
// convertOpts are used to pass options to `volumeToAPI` // convertOpts are used to pass options to `volumeToAPI`

View File

@@ -9,11 +9,11 @@ import (
"github.com/docker/docker/api/types/events" "github.com/docker/docker/api/types/events"
"github.com/docker/docker/api/types/filters" "github.com/docker/docker/api/types/filters"
volumetypes "github.com/docker/docker/api/types/volume" volumetypes "github.com/docker/docker/api/types/volume"
"github.com/docker/docker/daemon/internal/directory"
"github.com/docker/docker/daemon/volume" "github.com/docker/docker/daemon/volume"
"github.com/docker/docker/daemon/volume/drivers" "github.com/docker/docker/daemon/volume/drivers"
"github.com/docker/docker/daemon/volume/service/opts" "github.com/docker/docker/daemon/volume/service/opts"
"github.com/docker/docker/errdefs" "github.com/docker/docker/errdefs"
"github.com/docker/docker/internal/directory"
"github.com/docker/docker/pkg/idtools" "github.com/docker/docker/pkg/idtools"
"github.com/docker/docker/pkg/plugingetter" "github.com/docker/docker/pkg/plugingetter"
"github.com/docker/docker/pkg/stringid" "github.com/docker/docker/pkg/stringid"