Merge pull request #6075 from thaJeztah/bump_engine
vendor: github.com/docker/docker c04dec11437f (master, v28.x dev)
This commit is contained in:
commit
d43b7daeb7
@ -81,7 +81,7 @@ func runPrune(ctx context.Context, dockerCli command.Cli, options pruneOptions)
|
|||||||
|
|
||||||
report, err := dockerCli.Client().BuildCachePrune(ctx, types.BuildCachePruneOptions{
|
report, err := dockerCli.Client().BuildCachePrune(ctx, types.BuildCachePruneOptions{
|
||||||
All: options.all,
|
All: options.all,
|
||||||
KeepStorage: options.keepStorage.Value(),
|
KeepStorage: options.keepStorage.Value(), // FIXME(thaJeztah): rewrite to use new options; see https://github.com/moby/moby/pull/48720
|
||||||
Filters: pruneFilters,
|
Filters: pruneFilters,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -6,7 +6,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/docker/docker/api/types"
|
"github.com/docker/docker/api/types/build"
|
||||||
"github.com/docker/docker/pkg/stringid"
|
"github.com/docker/docker/pkg/stringid"
|
||||||
"github.com/docker/go-units"
|
"github.com/docker/go-units"
|
||||||
)
|
)
|
||||||
@ -52,7 +52,7 @@ shared: {{.Shared}}
|
|||||||
return Format(source)
|
return Format(source)
|
||||||
}
|
}
|
||||||
|
|
||||||
func buildCacheSort(buildCache []*types.BuildCache) {
|
func buildCacheSort(buildCache []*build.CacheRecord) {
|
||||||
sort.Slice(buildCache, func(i, j int) bool {
|
sort.Slice(buildCache, func(i, j int) bool {
|
||||||
lui, luj := buildCache[i].LastUsedAt, buildCache[j].LastUsedAt
|
lui, luj := buildCache[i].LastUsedAt, buildCache[j].LastUsedAt
|
||||||
switch {
|
switch {
|
||||||
@ -71,7 +71,7 @@ func buildCacheSort(buildCache []*types.BuildCache) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// BuildCacheWrite renders the context for a list of containers
|
// BuildCacheWrite renders the context for a list of containers
|
||||||
func BuildCacheWrite(ctx Context, buildCaches []*types.BuildCache) error {
|
func BuildCacheWrite(ctx Context, buildCaches []*build.CacheRecord) error {
|
||||||
render := func(format func(subContext SubContext) error) error {
|
render := func(format func(subContext SubContext) error) error {
|
||||||
buildCacheSort(buildCaches)
|
buildCacheSort(buildCaches)
|
||||||
for _, bc := range buildCaches {
|
for _, bc := range buildCaches {
|
||||||
@ -88,7 +88,7 @@ func BuildCacheWrite(ctx Context, buildCaches []*types.BuildCache) error {
|
|||||||
type buildCacheContext struct {
|
type buildCacheContext struct {
|
||||||
HeaderContext
|
HeaderContext
|
||||||
trunc bool
|
trunc bool
|
||||||
v *types.BuildCache
|
v *build.CacheRecord
|
||||||
}
|
}
|
||||||
|
|
||||||
func newBuildCacheContext() *buildCacheContext {
|
func newBuildCacheContext() *buildCacheContext {
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"text/template"
|
"text/template"
|
||||||
|
|
||||||
"github.com/distribution/reference"
|
"github.com/distribution/reference"
|
||||||
"github.com/docker/docker/api/types"
|
"github.com/docker/docker/api/types/build"
|
||||||
"github.com/docker/docker/api/types/container"
|
"github.com/docker/docker/api/types/container"
|
||||||
"github.com/docker/docker/api/types/image"
|
"github.com/docker/docker/api/types/image"
|
||||||
"github.com/docker/docker/api/types/volume"
|
"github.com/docker/docker/api/types/volume"
|
||||||
@ -38,7 +38,7 @@ type DiskUsageContext struct {
|
|||||||
Images []*image.Summary
|
Images []*image.Summary
|
||||||
Containers []*container.Summary
|
Containers []*container.Summary
|
||||||
Volumes []*volume.Volume
|
Volumes []*volume.Volume
|
||||||
BuildCache []*types.BuildCache
|
BuildCache []*build.CacheRecord
|
||||||
BuilderSize int64
|
BuilderSize int64
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -441,7 +441,7 @@ func (c *diskUsageVolumesContext) Reclaimable() string {
|
|||||||
type diskUsageBuilderContext struct {
|
type diskUsageBuilderContext struct {
|
||||||
HeaderContext
|
HeaderContext
|
||||||
builderSize int64
|
builderSize int64
|
||||||
buildCache []*types.BuildCache
|
buildCache []*build.CacheRecord
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *diskUsageBuilderContext) MarshalJSON() ([]byte, error) {
|
func (c *diskUsageBuilderContext) MarshalJSON() ([]byte, error) {
|
||||||
|
@ -14,7 +14,7 @@ require (
|
|||||||
github.com/distribution/reference v0.6.0
|
github.com/distribution/reference v0.6.0
|
||||||
github.com/docker/cli-docs-tool v0.9.0
|
github.com/docker/cli-docs-tool v0.9.0
|
||||||
github.com/docker/distribution v2.8.3+incompatible
|
github.com/docker/distribution v2.8.3+incompatible
|
||||||
github.com/docker/docker v28.1.2-0.20250515215111-fd1a78e0a388+incompatible // master, v28.x dev
|
github.com/docker/docker v28.1.2-0.20250516114456-c04dec11437f+incompatible // master, v28.x dev
|
||||||
github.com/docker/docker-credential-helpers v0.9.3
|
github.com/docker/docker-credential-helpers v0.9.3
|
||||||
github.com/docker/go-connections v0.5.0
|
github.com/docker/go-connections v0.5.0
|
||||||
github.com/docker/go-units v0.5.0
|
github.com/docker/go-units v0.5.0
|
||||||
|
@ -53,8 +53,8 @@ github.com/docker/cli-docs-tool v0.9.0/go.mod h1:ClrwlNW+UioiRyH9GiAOe1o3J/TsY3T
|
|||||||
github.com/docker/distribution v2.7.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
|
github.com/docker/distribution v2.7.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
|
||||||
github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk=
|
github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk=
|
||||||
github.com/docker/distribution v2.8.3+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
|
github.com/docker/distribution v2.8.3+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
|
||||||
github.com/docker/docker v28.1.2-0.20250515215111-fd1a78e0a388+incompatible h1:t6fp4pyFO9bUagzR2mxee6JdTAv5SJmqwMGUlllS7Hc=
|
github.com/docker/docker v28.1.2-0.20250516114456-c04dec11437f+incompatible h1:0jSTstSvJ1S0l/wH/vJ5JMnsSNpWx6dmqblTwe87dVc=
|
||||||
github.com/docker/docker v28.1.2-0.20250515215111-fd1a78e0a388+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
|
github.com/docker/docker v28.1.2-0.20250516114456-c04dec11437f+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
|
||||||
github.com/docker/docker-credential-helpers v0.9.3 h1:gAm/VtF9wgqJMoxzT3Gj5p4AqIjCBS4wrsOh9yRqcz8=
|
github.com/docker/docker-credential-helpers v0.9.3 h1:gAm/VtF9wgqJMoxzT3Gj5p4AqIjCBS4wrsOh9yRqcz8=
|
||||||
github.com/docker/docker-credential-helpers v0.9.3/go.mod h1:x+4Gbw9aGmChi3qTLZj8Dfn0TD20M/fuWy0E5+WDeCo=
|
github.com/docker/docker-credential-helpers v0.9.3/go.mod h1:x+4Gbw9aGmChi3qTLZj8Dfn0TD20M/fuWy0E5+WDeCo=
|
||||||
github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c h1:lzqkGL9b3znc+ZUgi7FlLnqjQhcXxkNM/quxIjBVMD0=
|
github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c h1:lzqkGL9b3znc+ZUgi7FlLnqjQhcXxkNM/quxIjBVMD0=
|
||||||
|
8
vendor/github.com/docker/docker/AUTHORS
generated
vendored
8
vendor/github.com/docker/docker/AUTHORS
generated
vendored
@ -2,6 +2,7 @@
|
|||||||
# This file lists all contributors to the repository.
|
# This file lists all contributors to the repository.
|
||||||
# See hack/generate-authors.sh to make modifications.
|
# See hack/generate-authors.sh to make modifications.
|
||||||
|
|
||||||
|
17neverends <ionianrise@gmail.com>
|
||||||
7sunarni <710720732@qq.com>
|
7sunarni <710720732@qq.com>
|
||||||
Aanand Prasad <aanand.prasad@gmail.com>
|
Aanand Prasad <aanand.prasad@gmail.com>
|
||||||
Aarni Koskela <akx@iki.fi>
|
Aarni Koskela <akx@iki.fi>
|
||||||
@ -189,6 +190,7 @@ Anes Hasicic <anes.hasicic@gmail.com>
|
|||||||
Angel Velazquez <angelcar@amazon.com>
|
Angel Velazquez <angelcar@amazon.com>
|
||||||
Anil Belur <askb23@gmail.com>
|
Anil Belur <askb23@gmail.com>
|
||||||
Anil Madhavapeddy <anil@recoil.org>
|
Anil Madhavapeddy <anil@recoil.org>
|
||||||
|
Anirudh Aithal <aithal@amazon.com>
|
||||||
Ankit Jain <ajatkj@yahoo.co.in>
|
Ankit Jain <ajatkj@yahoo.co.in>
|
||||||
Ankush Agarwal <ankushagarwal11@gmail.com>
|
Ankush Agarwal <ankushagarwal11@gmail.com>
|
||||||
Anonmily <michelle@michelleliu.io>
|
Anonmily <michelle@michelleliu.io>
|
||||||
@ -227,7 +229,7 @@ Arun Gupta <arun.gupta@gmail.com>
|
|||||||
Asad Saeeduddin <masaeedu@gmail.com>
|
Asad Saeeduddin <masaeedu@gmail.com>
|
||||||
Asbjørn Enge <asbjorn@hanafjedle.net>
|
Asbjørn Enge <asbjorn@hanafjedle.net>
|
||||||
Ashly Mathew <ashly.mathew@sap.com>
|
Ashly Mathew <ashly.mathew@sap.com>
|
||||||
Austin Vazquez <macedonv@amazon.com>
|
Austin Vazquez <austin.vazquez.dev@gmail.com>
|
||||||
averagehuman <averagehuman@users.noreply.github.com>
|
averagehuman <averagehuman@users.noreply.github.com>
|
||||||
Avi Das <andas222@gmail.com>
|
Avi Das <andas222@gmail.com>
|
||||||
Avi Kivity <avi@scylladb.com>
|
Avi Kivity <avi@scylladb.com>
|
||||||
@ -377,6 +379,7 @@ Chen Qiu <cheney-90@hotmail.com>
|
|||||||
Cheng-mean Liu <soccerl@microsoft.com>
|
Cheng-mean Liu <soccerl@microsoft.com>
|
||||||
Chengfei Shang <cfshang@alauda.io>
|
Chengfei Shang <cfshang@alauda.io>
|
||||||
Chengguang Xu <cgxu519@gmx.com>
|
Chengguang Xu <cgxu519@gmx.com>
|
||||||
|
Chengyu Zhu <hudson@cyzhu.com>
|
||||||
Chentianze <cmoman@126.com>
|
Chentianze <cmoman@126.com>
|
||||||
Chenyang Yan <memory.yancy@gmail.com>
|
Chenyang Yan <memory.yancy@gmail.com>
|
||||||
chenyuzhu <chenyuzhi@oschina.cn>
|
chenyuzhu <chenyuzhi@oschina.cn>
|
||||||
@ -1209,6 +1212,7 @@ K. Heller <pestophagous@gmail.com>
|
|||||||
Kai Blin <kai@samba.org>
|
Kai Blin <kai@samba.org>
|
||||||
Kai Qiang Wu (Kennan) <wkq5325@gmail.com>
|
Kai Qiang Wu (Kennan) <wkq5325@gmail.com>
|
||||||
Kaijie Chen <chen@kaijie.org>
|
Kaijie Chen <chen@kaijie.org>
|
||||||
|
Kaita Nakamura <kaita.nakamura0830@gmail.com>
|
||||||
Kamil Domański <kamil@domanski.co>
|
Kamil Domański <kamil@domanski.co>
|
||||||
Kamjar Gerami <kami.gerami@gmail.com>
|
Kamjar Gerami <kami.gerami@gmail.com>
|
||||||
Kanstantsin Shautsou <kanstantsin.sha@gmail.com>
|
Kanstantsin Shautsou <kanstantsin.sha@gmail.com>
|
||||||
@ -1485,6 +1489,7 @@ Matthias Kühnle <git.nivoc@neverbox.com>
|
|||||||
Matthias Rampke <mr@soundcloud.com>
|
Matthias Rampke <mr@soundcloud.com>
|
||||||
Matthieu Fronton <m@tthieu.fr>
|
Matthieu Fronton <m@tthieu.fr>
|
||||||
Matthieu Hauglustaine <matt.hauglustaine@gmail.com>
|
Matthieu Hauglustaine <matt.hauglustaine@gmail.com>
|
||||||
|
Matthieu MOREL <matthieu.morel35@gmail.com>
|
||||||
Mattias Jernberg <nostrad@gmail.com>
|
Mattias Jernberg <nostrad@gmail.com>
|
||||||
Mauricio Garavaglia <mauricio@medallia.com>
|
Mauricio Garavaglia <mauricio@medallia.com>
|
||||||
mauriyouth <mauriyouth@gmail.com>
|
mauriyouth <mauriyouth@gmail.com>
|
||||||
@ -1874,6 +1879,7 @@ Robert Obryk <robryk@gmail.com>
|
|||||||
Robert Schneider <mail@shakeme.info>
|
Robert Schneider <mail@shakeme.info>
|
||||||
Robert Shade <robert.shade@gmail.com>
|
Robert Shade <robert.shade@gmail.com>
|
||||||
Robert Stern <lexandro2000@gmail.com>
|
Robert Stern <lexandro2000@gmail.com>
|
||||||
|
Robert Sturla <robertsturla@outlook.com>
|
||||||
Robert Terhaar <rterhaar@atlanticdynamic.com>
|
Robert Terhaar <rterhaar@atlanticdynamic.com>
|
||||||
Robert Wallis <smilingrob@gmail.com>
|
Robert Wallis <smilingrob@gmail.com>
|
||||||
Robert Wang <robert@arctic.tw>
|
Robert Wang <robert@arctic.tw>
|
||||||
|
30
vendor/github.com/docker/docker/api/types/build/cache.go
generated
vendored
Normal file
30
vendor/github.com/docker/docker/api/types/build/cache.go
generated
vendored
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
package build
|
||||||
|
|
||||||
|
import "time"
|
||||||
|
|
||||||
|
// CacheRecord contains information about a build cache record.
|
||||||
|
type CacheRecord struct {
|
||||||
|
// ID is the unique ID of the build cache record.
|
||||||
|
ID string
|
||||||
|
// Parent is the ID of the parent build cache record.
|
||||||
|
//
|
||||||
|
// Deprecated: deprecated in API v1.42 and up, as it was deprecated in BuildKit; use Parents instead.
|
||||||
|
Parent string `json:"Parent,omitempty"`
|
||||||
|
// Parents is the list of parent build cache record IDs.
|
||||||
|
Parents []string `json:" Parents,omitempty"`
|
||||||
|
// Type is the cache record type.
|
||||||
|
Type string
|
||||||
|
// Description is a description of the build-step that produced the build cache.
|
||||||
|
Description string
|
||||||
|
// InUse indicates if the build cache is in use.
|
||||||
|
InUse bool
|
||||||
|
// Shared indicates if the build cache is shared.
|
||||||
|
Shared bool
|
||||||
|
// Size is the amount of disk space used by the build cache (in bytes).
|
||||||
|
Size int64
|
||||||
|
// CreatedAt is the date and time at which the build cache was created.
|
||||||
|
CreatedAt time.Time
|
||||||
|
// LastUsedAt is the date and time at which the build cache was last used.
|
||||||
|
LastUsedAt *time.Time
|
||||||
|
UsageCount int
|
||||||
|
}
|
8
vendor/github.com/docker/docker/api/types/build/disk_usage.go
generated
vendored
Normal file
8
vendor/github.com/docker/docker/api/types/build/disk_usage.go
generated
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
package build
|
||||||
|
|
||||||
|
// CacheDiskUsage contains disk usage for the build cache.
|
||||||
|
type CacheDiskUsage struct {
|
||||||
|
TotalSize int64
|
||||||
|
Reclaimable int64
|
||||||
|
Items []*CacheRecord
|
||||||
|
}
|
8
vendor/github.com/docker/docker/api/types/container/disk_usage.go
generated
vendored
Normal file
8
vendor/github.com/docker/docker/api/types/container/disk_usage.go
generated
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
package container
|
||||||
|
|
||||||
|
// DiskUsage contains disk usage for containers.
|
||||||
|
type DiskUsage struct {
|
||||||
|
TotalSize int64
|
||||||
|
Reclaimable int64
|
||||||
|
Items []*Summary
|
||||||
|
}
|
8
vendor/github.com/docker/docker/api/types/image/disk_usage.go
generated
vendored
Normal file
8
vendor/github.com/docker/docker/api/types/image/disk_usage.go
generated
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
package image
|
||||||
|
|
||||||
|
// DiskUsage contains disk usage for images.
|
||||||
|
type DiskUsage struct {
|
||||||
|
TotalSize int64
|
||||||
|
Reclaimable int64
|
||||||
|
Items []*Summary
|
||||||
|
}
|
17
vendor/github.com/docker/docker/api/types/system/disk_usage.go
generated
vendored
Normal file
17
vendor/github.com/docker/docker/api/types/system/disk_usage.go
generated
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
package system
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/docker/docker/api/types/build"
|
||||||
|
"github.com/docker/docker/api/types/container"
|
||||||
|
"github.com/docker/docker/api/types/image"
|
||||||
|
"github.com/docker/docker/api/types/volume"
|
||||||
|
)
|
||||||
|
|
||||||
|
// DiskUsage contains response of Engine API for API 1.49 and greater:
|
||||||
|
// GET "/system/df"
|
||||||
|
type DiskUsage struct {
|
||||||
|
Images *image.DiskUsage
|
||||||
|
Containers *container.DiskUsage
|
||||||
|
Volumes *volume.DiskUsage
|
||||||
|
BuildCache *build.CacheDiskUsage
|
||||||
|
}
|
31
vendor/github.com/docker/docker/api/types/types.go
generated
vendored
31
vendor/github.com/docker/docker/api/types/types.go
generated
vendored
@ -1,8 +1,7 @@
|
|||||||
package types // import "github.com/docker/docker/api/types"
|
package types // import "github.com/docker/docker/api/types"
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"time"
|
"github.com/docker/docker/api/types/build"
|
||||||
|
|
||||||
"github.com/docker/docker/api/types/container"
|
"github.com/docker/docker/api/types/container"
|
||||||
"github.com/docker/docker/api/types/filters"
|
"github.com/docker/docker/api/types/filters"
|
||||||
"github.com/docker/docker/api/types/image"
|
"github.com/docker/docker/api/types/image"
|
||||||
@ -141,31 +140,9 @@ type BuildResult struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// BuildCache contains information about a build cache record.
|
// BuildCache contains information about a build cache record.
|
||||||
type BuildCache struct {
|
//
|
||||||
// ID is the unique ID of the build cache record.
|
// Deprecated: deprecated in API 1.49. Use [build.CacheRecord] instead.
|
||||||
ID string
|
type BuildCache = build.CacheRecord
|
||||||
// Parent is the ID of the parent build cache record.
|
|
||||||
//
|
|
||||||
// Deprecated: deprecated in API v1.42 and up, as it was deprecated in BuildKit; use Parents instead.
|
|
||||||
Parent string `json:"Parent,omitempty"`
|
|
||||||
// Parents is the list of parent build cache record IDs.
|
|
||||||
Parents []string `json:" Parents,omitempty"`
|
|
||||||
// Type is the cache record type.
|
|
||||||
Type string
|
|
||||||
// Description is a description of the build-step that produced the build cache.
|
|
||||||
Description string
|
|
||||||
// InUse indicates if the build cache is in use.
|
|
||||||
InUse bool
|
|
||||||
// Shared indicates if the build cache is shared.
|
|
||||||
Shared bool
|
|
||||||
// Size is the amount of disk space used by the build cache (in bytes).
|
|
||||||
Size int64
|
|
||||||
// CreatedAt is the date and time at which the build cache was created.
|
|
||||||
CreatedAt time.Time
|
|
||||||
// LastUsedAt is the date and time at which the build cache was last used.
|
|
||||||
LastUsedAt *time.Time
|
|
||||||
UsageCount int
|
|
||||||
}
|
|
||||||
|
|
||||||
// BuildCachePruneOptions hold parameters to prune the build cache
|
// BuildCachePruneOptions hold parameters to prune the build cache
|
||||||
type BuildCachePruneOptions struct {
|
type BuildCachePruneOptions struct {
|
||||||
|
8
vendor/github.com/docker/docker/api/types/volume/disk_usage.go
generated
vendored
Normal file
8
vendor/github.com/docker/docker/api/types/volume/disk_usage.go
generated
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
package volume
|
||||||
|
|
||||||
|
// DiskUsage contains disk usage for volumes.
|
||||||
|
type DiskUsage struct {
|
||||||
|
TotalSize int64
|
||||||
|
Reclaimable int64
|
||||||
|
Items []*Volume
|
||||||
|
}
|
3
vendor/modules.txt
vendored
3
vendor/modules.txt
vendored
@ -58,12 +58,13 @@ github.com/docker/distribution/registry/client/transport
|
|||||||
github.com/docker/distribution/registry/storage/cache
|
github.com/docker/distribution/registry/storage/cache
|
||||||
github.com/docker/distribution/registry/storage/cache/memory
|
github.com/docker/distribution/registry/storage/cache/memory
|
||||||
github.com/docker/distribution/uuid
|
github.com/docker/distribution/uuid
|
||||||
# github.com/docker/docker v28.1.2-0.20250515215111-fd1a78e0a388+incompatible
|
# github.com/docker/docker v28.1.2-0.20250516114456-c04dec11437f+incompatible
|
||||||
## explicit
|
## explicit
|
||||||
github.com/docker/docker/api
|
github.com/docker/docker/api
|
||||||
github.com/docker/docker/api/types
|
github.com/docker/docker/api/types
|
||||||
github.com/docker/docker/api/types/auxprogress
|
github.com/docker/docker/api/types/auxprogress
|
||||||
github.com/docker/docker/api/types/blkiodev
|
github.com/docker/docker/api/types/blkiodev
|
||||||
|
github.com/docker/docker/api/types/build
|
||||||
github.com/docker/docker/api/types/checkpoint
|
github.com/docker/docker/api/types/checkpoint
|
||||||
github.com/docker/docker/api/types/common
|
github.com/docker/docker/api/types/common
|
||||||
github.com/docker/docker/api/types/container
|
github.com/docker/docker/api/types/container
|
||||||
|
Loading…
x
Reference in New Issue
Block a user