Move oci to daemon/pkg/oci

Signed-off-by: Derek McGowan <derek@mcg.dev>
This commit is contained in:
Derek McGowan
2025-07-24 12:11:19 -07:00
parent f24455c90b
commit c74ba95583
26 changed files with 14 additions and 14 deletions

View File

@@ -10,7 +10,7 @@ import (
"github.com/docker/docker/daemon/builder"
"github.com/docker/docker/daemon/internal/image"
"github.com/docker/docker/oci"
"github.com/docker/docker/daemon/pkg/oci"
"github.com/docker/go-connections/nat"
"github.com/moby/buildkit/frontend/dockerfile/instructions"
"github.com/moby/buildkit/frontend/dockerfile/parser"

View File

@@ -27,8 +27,8 @@ import (
"github.com/docker/docker/daemon/builder"
"github.com/docker/docker/daemon/internal/image"
"github.com/docker/docker/daemon/pkg/oci"
"github.com/docker/docker/errdefs"
"github.com/docker/docker/oci"
"github.com/moby/buildkit/frontend/dockerfile/instructions"
"github.com/moby/buildkit/frontend/dockerfile/shell"
"github.com/moby/moby/api/types/container"

View File

@@ -19,10 +19,10 @@ import (
"github.com/docker/docker/daemon/container"
"github.com/docker/docker/daemon/internal/image"
"github.com/docker/docker/daemon/network"
"github.com/docker/docker/daemon/pkg/oci/caps"
"github.com/docker/docker/daemon/pkg/opts"
volumemounts "github.com/docker/docker/daemon/volume/mounts"
"github.com/docker/docker/errdefs"
"github.com/docker/docker/oci/caps"
"github.com/docker/go-connections/nat"
containertypes "github.com/moby/moby/api/types/container"
"github.com/moby/moby/api/types/mount"

View File

@@ -26,10 +26,10 @@ import (
"github.com/docker/docker/daemon/logger/local"
"github.com/docker/docker/daemon/logger/loggerutils/cache"
"github.com/docker/docker/daemon/network"
"github.com/docker/docker/daemon/pkg/oci"
"github.com/docker/docker/daemon/volume"
volumemounts "github.com/docker/docker/daemon/volume/mounts"
"github.com/docker/docker/errdefs"
"github.com/docker/docker/oci"
"github.com/docker/go-units"
containertypes "github.com/moby/moby/api/types/container"
"github.com/moby/moby/api/types/events"

View File

@@ -11,9 +11,9 @@ import (
cerrdefs "github.com/containerd/errdefs"
"github.com/containerd/log"
"github.com/docker/docker/daemon/container"
"github.com/docker/docker/daemon/pkg/oci"
volumemounts "github.com/docker/docker/daemon/volume/mounts"
volumeopts "github.com/docker/docker/daemon/volume/service/opts"
"github.com/docker/docker/oci"
"github.com/docker/docker/pkg/idtools"
containertypes "github.com/moby/moby/api/types/container"
mounttypes "github.com/moby/moby/api/types/mount"

View File

@@ -8,7 +8,7 @@ import (
coci "github.com/containerd/containerd/v2/pkg/oci"
"github.com/docker/docker/daemon/config"
"github.com/docker/docker/daemon/container"
"github.com/docker/docker/oci/caps"
"github.com/docker/docker/daemon/pkg/oci/caps"
"github.com/opencontainers/runtime-spec/specs-go"
)

View File

@@ -15,12 +15,12 @@ import (
"github.com/containerd/log"
dconfig "github.com/docker/docker/daemon/config"
"github.com/docker/docker/daemon/container"
"github.com/docker/docker/daemon/pkg/oci"
"github.com/docker/docker/daemon/pkg/oci/caps"
volumemounts "github.com/docker/docker/daemon/volume/mounts"
"github.com/docker/docker/errdefs"
"github.com/docker/docker/internal/rootless/mountopts"
"github.com/docker/docker/internal/rootless/specconv"
"github.com/docker/docker/oci"
"github.com/docker/docker/oci/caps"
containertypes "github.com/moby/moby/api/types/container"
"github.com/moby/sys/mount"
"github.com/moby/sys/mountinfo"

View File

@@ -15,8 +15,8 @@ import (
"github.com/docker/docker/daemon/config"
"github.com/docker/docker/daemon/container"
"github.com/docker/docker/daemon/internal/image"
"github.com/docker/docker/daemon/pkg/oci"
"github.com/docker/docker/errdefs"
"github.com/docker/docker/oci"
"github.com/moby/moby/api/types/backend"
containertypes "github.com/moby/moby/api/types/container"
"github.com/opencontainers/runtime-spec/specs-go"

View File

@@ -9,8 +9,8 @@ import (
"runtime"
"sync"
"github.com/docker/docker/daemon/pkg/oci/caps"
"github.com/docker/docker/internal/platform"
"github.com/docker/docker/oci/caps"
"github.com/opencontainers/runtime-spec/specs-go"
)

View File

@@ -9,9 +9,9 @@ import (
"runtime"
"strings"
"github.com/docker/docker/daemon/pkg/oci"
"github.com/docker/docker/internal/rootless/mountopts"
"github.com/docker/docker/internal/sliceutil"
"github.com/docker/docker/oci"
"github.com/moby/moby/api/types"
"github.com/moby/sys/userns"
"github.com/opencontainers/runtime-spec/specs-go"

View File

@@ -6,7 +6,7 @@ import (
coci "github.com/containerd/containerd/v2/pkg/oci"
dconfig "github.com/docker/docker/daemon/config"
"github.com/docker/docker/daemon/container"
"github.com/docker/docker/oci"
"github.com/docker/docker/daemon/pkg/oci"
"github.com/docker/docker/pkg/sysinfo"
containertypes "github.com/moby/moby/api/types/container"
"github.com/moby/profiles/seccomp"

View File

@@ -7,8 +7,8 @@ import (
"github.com/docker/docker/daemon/config"
"github.com/docker/docker/daemon/container"
"github.com/docker/docker/daemon/internal/libcontainerd/types"
"github.com/docker/docker/daemon/pkg/oci"
"github.com/docker/docker/errdefs"
"github.com/docker/docker/oci"
"github.com/opencontainers/runtime-spec/specs-go"
)

View File

@@ -11,9 +11,9 @@ import (
containerd "github.com/containerd/containerd/v2/client"
cerrdefs "github.com/containerd/errdefs"
"github.com/docker/docker/daemon/pkg/oci"
testContainer "github.com/docker/docker/integration/internal/container"
net "github.com/docker/docker/integration/internal/network"
"github.com/docker/docker/oci"
"github.com/docker/docker/pkg/stringid"
"github.com/docker/docker/testutil"
"github.com/moby/moby/api/types/container"