Skip to content

Commit 3b541b0

Browse files
committed
Bump docker v26.0.0
Signed-off-by: Nicolas De Loof <[email protected]>
1 parent 25671ae commit 3b541b0

File tree

15 files changed

+249
-262
lines changed

15 files changed

+249
-262
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ on:
1818
required: false
1919
default: "false"
2020

21-
env:
22-
DOCKER_CLI_VERSION: "25.0.1"
23-
2421
permissions:
2522
contents: read # to fetch code (actions/checkout)
2623

@@ -145,7 +142,8 @@ jobs:
145142
- standalone
146143
engine:
147144
- 24.0.9
148-
- 25.0.3
145+
- 25.0.4
146+
- 26.0.0
149147
steps:
150148
-
151149
name: Checkout

docs/reference/compose_attach.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Attach local standard input, output, and error streams to a service's running co
1111
| `--dry-run` | | | Execute command in dry run mode |
1212
| `--index` | `int` | `0` | index of the container if service has multiple replicas. |
1313
| `--no-stdin` | | | Do not attach STDIN |
14-
| `--sig-proxy` | | | Proxy all received signals to the process |
14+
| `--sig-proxy` | `bool` | `true` | Proxy all received signals to the process |
1515

1616

1717
<!---MARKER_GEN_END-->

docs/reference/compose_exec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Execute a command in a running container
1111
| `--dry-run` | | | Execute command in dry run mode |
1212
| `-e`, `--env` | `stringArray` | | Set environment variables |
1313
| `--index` | `int` | `0` | Index of the container if service has multiple replicas |
14-
| `-T`, `--no-TTY` | | | Disable pseudo-TTY allocation. By default `docker compose exec` allocates a TTY. |
14+
| `-T`, `--no-TTY` | `bool` | `true` | Disable pseudo-TTY allocation. By default `docker compose exec` allocates a TTY. |
1515
| `--privileged` | | | Give extended privileges to the process |
1616
| `-u`, `--user` | `string` | | Run the command as this user |
1717
| `-w`, `--workdir` | `string` | | Path to workdir directory for this command |

docs/reference/compose_ps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ List containers
1212
| [`--filter`](#filter) | `string` | | Filter services by a property (supported filters: status) |
1313
| [`--format`](#format) | `string` | `table` | Format output using a custom template:<br>'table': Print output in table format with column headers (default)<br>'table TEMPLATE': Print output in table format using the given Go template<br>'json': Print in JSON format<br>'TEMPLATE': Print output using the given Go template.<br>Refer to https://docs.docker.com/go/formatting/ for more information about formatting output with templates |
1414
| `--no-trunc` | | | Don't truncate output |
15-
| `--orphans` | | | Include orphaned services (not declared by project) |
15+
| `--orphans` | `bool` | `true` | Include orphaned services (not declared by project) |
1616
| `-q`, `--quiet` | | | Only display IDs |
1717
| `--services` | | | Display services |
1818
| [`--status`](#status) | `stringArray` | | Filter services by status. Values: [paused \| restarting \| removing \| running \| dead \| created \| exited] |

docs/reference/compose_run.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ Run a one-off command on a service
1414
| `--dry-run` | | | Execute command in dry run mode |
1515
| `--entrypoint` | `string` | | Override the entrypoint of the image |
1616
| `-e`, `--env` | `stringArray` | | Set environment variables |
17-
| `-i`, `--interactive` | | | Keep STDIN open even if not attached |
17+
| `-i`, `--interactive` | `bool` | `true` | Keep STDIN open even if not attached |
1818
| `-l`, `--label` | `stringArray` | | Add or override a label |
1919
| `--name` | `string` | | Assign a name to the container |
20-
| `-T`, `--no-TTY` | | | Disable pseudo-TTY allocation (default: auto-detected) |
20+
| `-T`, `--no-TTY` | `bool` | `true` | Disable pseudo-TTY allocation (default: auto-detected) |
2121
| `--no-deps` | | | Don't start linked services |
2222
| `-p`, `--publish` | `stringArray` | | Publish a container's port(s) to the host |
2323
| `--quiet-pull` | | | Pull without printing progress information |

go.mod

Lines changed: 62 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ require (
77
github.com/Microsoft/go-winio v0.6.1
88
github.com/buger/goterm v1.0.4
99
github.com/compose-spec/compose-go/v2 v2.0.2
10-
github.com/containerd/console v1.0.3
11-
github.com/containerd/containerd v1.7.12
10+
github.com/containerd/console v1.0.4
11+
github.com/containerd/containerd v1.7.13
1212
github.com/davecgh/go-spew v1.1.1
1313
github.com/distribution/reference v0.5.0
14-
github.com/docker/buildx v0.12.0-rc2.0.20231219140829-617f538cb315
15-
github.com/docker/cli v25.0.4-0.20240305161310-2bf4225ad269+incompatible
16-
github.com/docker/cli-docs-tool v0.6.0
17-
github.com/docker/docker v25.0.4-0.20240301160236-51e876cd964c+incompatible
14+
github.com/docker/buildx v0.13.1
15+
github.com/docker/cli v26.0.0+incompatible
16+
github.com/docker/cli-docs-tool v0.7.0
17+
github.com/docker/docker v26.0.0+incompatible
1818
github.com/docker/go-connections v0.5.0
1919
github.com/docker/go-units v0.5.0
2020
github.com/fsnotify/fsevents v0.1.1
@@ -25,7 +25,7 @@ require (
2525
github.com/mattn/go-shellwords v1.0.12
2626
github.com/mitchellh/go-ps v1.0.0
2727
github.com/mitchellh/mapstructure v1.5.0
28-
github.com/moby/buildkit v0.13.0-beta1.0.20231219135447-957cb50df991
28+
github.com/moby/buildkit v0.13.1
2929
github.com/moby/patternmatcher v0.6.0
3030
github.com/moby/term v0.5.0
3131
github.com/morikuni/aec v1.0.0
@@ -39,12 +39,12 @@ require (
3939
github.com/stretchr/testify v1.8.4
4040
github.com/theupdateframework/notary v0.7.0
4141
github.com/tilt-dev/fsnotify v1.4.8-0.20220602155310-fff9c274a375
42-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0
43-
go.opentelemetry.io/otel v1.19.0
44-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0
45-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.19.0
46-
go.opentelemetry.io/otel/sdk v1.19.0
47-
go.opentelemetry.io/otel/trace v1.19.0
42+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1
43+
go.opentelemetry.io/otel v1.21.0
44+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0
45+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.21.0
46+
go.opentelemetry.io/otel/sdk v1.21.0
47+
go.opentelemetry.io/otel/trace v1.21.0
4848
go.uber.org/goleak v1.3.0
4949
go.uber.org/mock v0.4.0
5050
golang.org/x/exp v0.0.0-20240112132812-db7319d0e0e3
@@ -61,45 +61,48 @@ require (
6161
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
6262
github.com/Masterminds/semver/v3 v3.2.1 // indirect
6363
github.com/Microsoft/hcsshim v0.11.4 // indirect
64-
github.com/aws/aws-sdk-go-v2 v1.17.6 // indirect
65-
github.com/aws/aws-sdk-go-v2/config v1.18.16 // indirect
66-
github.com/aws/aws-sdk-go-v2/credentials v1.13.16 // indirect
67-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.24 // indirect
68-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.30 // indirect
69-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.24 // indirect
70-
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.31 // indirect
71-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.24 // indirect
72-
github.com/aws/aws-sdk-go-v2/service/sso v1.12.5 // indirect
73-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.5 // indirect
74-
github.com/aws/aws-sdk-go-v2/service/sts v1.18.6 // indirect
75-
github.com/aws/smithy-go v1.13.5 // indirect
64+
github.com/aws/aws-sdk-go-v2 v1.24.1 // indirect
65+
github.com/aws/aws-sdk-go-v2/config v1.26.6 // indirect
66+
github.com/aws/aws-sdk-go-v2/credentials v1.16.16 // indirect
67+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.11 // indirect
68+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.10 // indirect
69+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.10 // indirect
70+
github.com/aws/aws-sdk-go-v2/internal/ini v1.7.3 // indirect
71+
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.4 // indirect
72+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.10 // indirect
73+
github.com/aws/aws-sdk-go-v2/service/sso v1.18.7 // indirect
74+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.21.7 // indirect
75+
github.com/aws/aws-sdk-go-v2/service/sts v1.26.7 // indirect
76+
github.com/aws/smithy-go v1.19.0 // indirect
7677
github.com/beorn7/perks v1.0.1 // indirect
7778
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
7879
github.com/cespare/xxhash/v2 v2.2.0 // indirect
79-
github.com/containerd/continuity v0.4.2 // indirect
80+
github.com/containerd/continuity v0.4.3 // indirect
8081
github.com/containerd/log v0.1.0 // indirect
82+
github.com/containerd/ttrpc v1.2.2 // indirect
8183
github.com/containerd/typeurl/v2 v2.1.1 // indirect
8284
github.com/docker/distribution v2.8.3+incompatible // indirect
8385
github.com/docker/docker-credential-helpers v0.8.0 // indirect
8486
github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c // indirect
8587
github.com/docker/go-metrics v0.0.1 // indirect
86-
github.com/emicklei/go-restful/v3 v3.10.1 // indirect
88+
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
8789
github.com/felixge/httpsnoop v1.0.4 // indirect
8890
github.com/fvbommel/sortorder v1.0.2 // indirect
89-
github.com/go-logr/logr v1.2.4 // indirect
91+
github.com/go-logr/logr v1.3.0 // indirect
9092
github.com/go-logr/stdr v1.2.2 // indirect
91-
github.com/go-openapi/jsonpointer v0.19.5 // indirect
92-
github.com/go-openapi/jsonreference v0.20.0 // indirect
93-
github.com/go-openapi/swag v0.19.14 // indirect
93+
github.com/go-openapi/jsonpointer v0.19.6 // indirect
94+
github.com/go-openapi/jsonreference v0.20.2 // indirect
95+
github.com/go-openapi/swag v0.22.3 // indirect
9496
github.com/gofrs/flock v0.8.1 // indirect
9597
github.com/gogo/googleapis v1.4.1 // indirect
9698
github.com/gogo/protobuf v1.3.2 // indirect
9799
github.com/golang/protobuf v1.5.3 // indirect
98-
github.com/google/gnostic v0.5.7-v3refs // indirect
100+
github.com/google/gnostic-models v0.6.8 // indirect
99101
github.com/google/gofuzz v1.2.0 // indirect
100102
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
101-
github.com/google/uuid v1.5.0 // indirect
103+
github.com/google/uuid v1.6.0 // indirect
102104
github.com/gorilla/mux v1.8.1 // indirect
105+
github.com/gorilla/websocket v1.5.0 // indirect
103106
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
104107
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 // indirect
105108
github.com/hashicorp/errwrap v1.1.0 // indirect
@@ -111,7 +114,7 @@ require (
111114
github.com/json-iterator/go v1.1.12 // indirect
112115
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
113116
github.com/klauspost/compress v1.17.4 // indirect
114-
github.com/mailru/easyjson v0.7.6 // indirect
117+
github.com/mailru/easyjson v0.7.7 // indirect
115118
github.com/mattn/go-colorable v0.1.13 // indirect
116119
github.com/mattn/go-isatty v0.0.17 // indirect
117120
github.com/mattn/go-runewidth v0.0.15 // indirect
@@ -120,6 +123,7 @@ require (
120123
github.com/miekg/pkcs11 v1.1.1 // indirect
121124
github.com/mitchellh/copystructure v1.2.0 // indirect
122125
github.com/mitchellh/reflectwalk v1.0.2 // indirect
126+
github.com/moby/docker-image-spec v1.3.1 // indirect
123127
github.com/moby/locker v1.0.1 // indirect
124128
github.com/moby/spdystream v0.2.0 // indirect
125129
github.com/moby/sys/mountinfo v0.7.1 // indirect
@@ -130,32 +134,33 @@ require (
130134
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
131135
github.com/modern-go/reflect2 v1.0.2 // indirect
132136
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
137+
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
133138
github.com/pelletier/go-toml v1.9.5 // indirect
134139
github.com/pkg/errors v0.9.1 // indirect
135140
github.com/pmezard/go-difflib v1.0.0 // indirect
136-
github.com/prometheus/client_golang v1.16.0 // indirect
137-
github.com/prometheus/client_model v0.4.0 // indirect
138-
github.com/prometheus/common v0.42.0 // indirect
139-
github.com/prometheus/procfs v0.10.1 // indirect
141+
github.com/prometheus/client_golang v1.17.0 // indirect
142+
github.com/prometheus/client_model v0.5.0 // indirect
143+
github.com/prometheus/common v0.44.0 // indirect
144+
github.com/prometheus/procfs v0.12.0 // indirect
140145
github.com/rivo/uniseg v0.2.0 // indirect
141146
github.com/secure-systems-lab/go-securesystemslib v0.4.0 // indirect
142-
github.com/serialx/hashring v0.0.0-20190422032157-8b2912629002 // indirect
147+
github.com/serialx/hashring v0.0.0-20200727003509-22c0c7ab6b1b // indirect
143148
github.com/shibumi/go-pathspec v1.3.0 // indirect
144-
github.com/tonistiigi/fsutil v0.0.0-20230825212630-f09800878302 // indirect
149+
github.com/tonistiigi/fsutil v0.0.0-20240301111122-7525a1af2bb5 // indirect
145150
github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea // indirect
146151
github.com/tonistiigi/vt100 v0.0.0-20230623042737-f9a4f7ef6531 // indirect
147152
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
148153
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
149154
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
150-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.45.0 // indirect
151-
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.45.0 // indirect
155+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 // indirect
156+
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.46.1 // indirect
152157
go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.42.0 // indirect
153158
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.42.0 // indirect
154159
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v0.42.0 // indirect
155-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.19.0 // indirect
160+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.21.0 // indirect
156161
go.opentelemetry.io/otel/exporters/prometheus v0.42.0 // indirect
157-
go.opentelemetry.io/otel/metric v1.19.0 // indirect
158-
go.opentelemetry.io/otel/sdk/metric v1.19.0 // indirect
162+
go.opentelemetry.io/otel/metric v1.21.0 // indirect
163+
go.opentelemetry.io/otel/sdk/metric v1.21.0 // indirect
159164
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
160165
golang.org/x/crypto v0.18.0 // indirect
161166
golang.org/x/mod v0.14.0 // indirect
@@ -166,28 +171,22 @@ require (
166171
golang.org/x/time v0.3.0 // indirect
167172
golang.org/x/tools v0.17.0 // indirect
168173
google.golang.org/appengine v1.6.7 // indirect
169-
google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d // indirect
170-
google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d // indirect
171-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
174+
google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b // indirect
175+
google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b // indirect
176+
google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b // indirect
172177
google.golang.org/protobuf v1.31.0 // indirect
173178
gopkg.in/cenkalti/backoff.v1 v1.1.0 // indirect
174179
gopkg.in/inf.v0 v0.9.1 // indirect
175180
gopkg.in/yaml.v2 v2.4.0 // indirect
176-
k8s.io/api v0.26.7 // indirect
177-
k8s.io/apimachinery v0.26.7 // indirect
178-
k8s.io/apiserver v0.26.7 // indirect
179-
k8s.io/client-go v0.26.7 // indirect
180-
k8s.io/klog/v2 v2.90.1 // indirect
181-
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect
182-
k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 // indirect
183-
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
184-
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
181+
k8s.io/api v0.29.2 // indirect
182+
k8s.io/apimachinery v0.29.2 // indirect
183+
k8s.io/apiserver v0.29.2 // indirect
184+
k8s.io/client-go v0.29.2 // indirect
185+
k8s.io/klog/v2 v2.110.1 // indirect
186+
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
187+
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
188+
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
189+
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
185190
sigs.k8s.io/yaml v1.3.0 // indirect
186191
tags.cncf.io/container-device-interface v0.6.2 // indirect
187192
)
188-
189-
replace (
190-
// reverts https://github.com/moby/buildkit/pull/4094 to fix fsutil issues on Windows
191-
github.com/moby/buildkit => github.com/crazy-max/buildkit v0.7.1-0.20240130133234-d9aa289bd124 // compose-957cb50df991
192-
github.com/tonistiigi/fsutil => github.com/tonistiigi/fsutil v0.0.0-20230629203738-36ef4d8c0dbb
193-
)

0 commit comments

Comments
 (0)