Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com> Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
5.6 KiB
title, description, keywords, toc_min, toc_max, skip_read_time, aliases
| title | description | keywords | toc_min | toc_max | skip_read_time | aliases | ||||
|---|---|---|---|---|---|---|---|---|---|---|
| Docker Engine 26.1 release notes | Learn about the new features, bug fixes, and breaking changes for Docker Engine | docker, docker engine, ce, whats new, release notes | 1 | 2 | true |
|
This page describes the latest changes, additions, known issues, and fixes for Docker Engine version 26.1.
For more information about:
- Deprecated and removed features, see Deprecated Engine Features.
- Changes to the Engine API, see Engine API version history.
26.1.2
{{< release-date date="2024-05-08" >}}
For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:
- docker/cli, 26.1.2 milestone
- moby/moby, 26.1.2 milestone
- Deprecated and removed features, see Deprecated Features.
- Changes to the Engine API, see API version history.
Bug fixes and enhancements
- Fix an issue where the CLI process would sometimes hang when a container failed to start. docker/cli#5062
Packaging updates
- Update Go runtime to 1.21.10. moby/moby#47806
26.1.1
{{< release-date date="2024-04-30" >}}
For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:
- docker/cli, 26.1.1 milestone
- moby/moby, 26.1.1 milestone
- Deprecated and removed features, see Deprecated Features.
- Changes to the Engine API, see API version history.
Bug fixes and enhancements
- Fix
docker run -dprinting ancontext canceledspurious error when OpenTelemetry is configured. docker/cli#5044 - Experimental environment variable
DOCKER_BRIDGE_PRESERVE_KERNEL_LL=1will prevent the daemon from removing the kernel-assigned link local address on a Linux bridge. moby/moby#47775 - Resolve an issue preventing container creation on hosts with a read-only
/proc/sys/netfilesystem. If IPv6 cannot be disabled on an interface due to this, either disable IPv6 by default on the host or ensure/proc/sys/netis read-write. To bypass the error, set the environment variableDOCKER_ALLOW_IPV6_ON_IPV4_INTERFACE=1before starting the Docker daemon. moby/moby#47769
Note
The
DOCKER_ALLOW_IPV6_ON_IPV4_INTERFACEis added as a temporary fix and will be phased out in a future major release, when the IPv6 enablement process has been improved.
Packaging updates
- Update BuildKit to v0.13.2. moby/moby#47762
- Update Compose to v2.27.0. docker/docker-ce-packages#1017
26.1.0
{{< release-date date="2024-04-22" >}}
For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:
- docker/cli, 26.1.0 milestone
- moby/moby, 26.1.0 milestone
- Deprecated and removed features, see Deprecated Features.
- Changes to the Engine API, see API version history.
New
- Added configurable OpenTelemetry utilities and basic instrumentation to commands. For more information, see OpenTelemetry for the Docker CLI. docker/cli#4889
Bug fixes and enhancements
-
Native Windows containers are configured with an internal DNS server for container name resolution, and external DNS servers for other lookups. Not all resolvers, including
nslookup, fall back to the external resolvers when they get aSERVFAILanswer from the internal server. So, the internal DNS server can now be configured to forward requests to the external resolvers, by setting afeatureoption in thedaemon.jsonfile:{ "features": { "windows-dns-proxy": true } }Note
- This will be the new default behavior in Docker Engine 27.0.
- The
windows-dns-proxyfeature flag will be removed in a future release.
-
Swarm: Fix
Subpathnot being passed to the container config. moby/moby#47711 -
Classic builder: Fix cache miss on
WORKDIR <directory>/build step (directory with a trailing slash). moby/moby#47723 -
containerd image store: Fix
docker imagesfailing when any image in the store has unexpected target. moby/moby#47738