Skip to content

Commit e1ae59e

Browse files
authored
Merge pull request #21845 from docker/published-update
publish updates from main
2 parents 3c2f371 + 0348157 commit e1ae59e

35 files changed

+651
-74
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
ARG ALPINE_VERSION=3.21
55
ARG GO_VERSION=1.23
66
ARG HTMLTEST_VERSION=0.17.0
7-
ARG HUGO_VERSION=0.139.0
7+
ARG HUGO_VERSION=0.141.0
88
ARG NODE_VERSION=22
99
ARG PAGEFIND_VERSION=1.3.0
1010

_vale/config/vocabularies/Docker/accept.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ Zsh
154154
[Vv]irtiofs
155155
[Vv]irtualize
156156
[Ww]alkthrough
157+
bootup
157158
cgroup
158159
config
159160
containerd

_vendor/github.com/docker/buildx/docs/bake-reference.md

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_vendor/github.com/moby/buildkit/frontend/dockerfile/docs/reference.md

Lines changed: 15 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_vendor/modules.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# github.com/moby/moby v27.5.0+incompatible
2-
# github.com/moby/buildkit v0.18.1
3-
# github.com/docker/buildx v0.19.2
2+
# github.com/moby/buildkit v0.19.0
3+
# github.com/docker/buildx v0.20.0
44
# github.com/docker/cli v27.5.0+incompatible
55
# github.com/docker/compose/v2 v2.32.4
66
# github.com/docker/scout-cli v1.15.0

content/get-started/docker-concepts/running-containers/sharing-local-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Using a bind mount, you can map the configuration file on your host computer to
101101
$ mkdir public_html
102102
```
103103

104-
3. Change the directory to `public_html` and create a file called `index.html` with the following content. This is a basic HTML document that creates a simple webpage that welcomes you with a friendly whale.
104+
3. Navigate into the newly created directory `public_html` and create a file called `index.html` with the following content. This is a basic HTML document that creates a simple webpage that welcomes you with a friendly whale.
105105

106106
```html
107107
<!DOCTYPE html>

content/get-started/workshop/06_bind_mounts.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ work.
5252
Docker Desktop's file sharing setting. This setting defines which parts of your
5353
filesystem you can share with containers. For details about accessing the setting, see [File sharing](/manuals/desktop/settings-and-maintenance/settings.md#file-sharing).
5454

55+
> [!NOTE]
56+
> The **File sharing** tab is only available in Hyper-V mode, because the files are automatically shared in WSL 2 mode and Windows container mode.
57+
5558
2. Open a terminal and change directory to the `getting-started-app`
5659
directory.
5760

content/manuals/build/bake/_index.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@ aliases:
66
- /build/customize/bake/
77
---
88

9-
{{% experimental %}}
10-
11-
Bake is an experimental feature, and we are looking for
12-
[feedback from users](https://github.com/docker/buildx/issues).
13-
14-
{{% /experimental %}}
15-
169
Bake is a feature of Docker Buildx that lets you define your build configuration
1710
using a declarative file, as opposed to specifying a complex CLI expression. It
1811
also lets you run multiple builds concurrently with a single invocation.

content/manuals/build/building/variables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ COPY . .
158158
CMD ["node", "app.js"]
159159
```
160160

161-
With this Dockerfile, you can use `--build-arg` to override the default value of `ENV`:
161+
With this Dockerfile, you can use `--build-arg` to override the default value of `NODE_ENV`:
162162

163163
```console
164164
$ docker build --build-arg NODE_ENV=development .

content/manuals/build/buildkit/dockerfile-release-notes.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,37 @@ issues, and bug fixes in [Dockerfile reference](/reference/dockerfile.md).
1313

1414
For usage, see the [Dockerfile frontend syntax](frontend.md) page.
1515

16+
## 1.13.0
17+
18+
{{< release-date date="2025-01-20" >}}
19+
20+
The full release note for this release is available
21+
[on GitHub](https://github.com/moby/buildkit/releases/tag/dockerfile%2F1.13.0).
22+
23+
```dockerfile
24+
# syntax=docker/dockerfile:1.13.0
25+
```
26+
27+
- New `TARGETOSVERSION`, `BUILDOSVERSION` builtin build-args are available for Windows builds, and `TARGETPLATFORM` value now also contains `OSVersion` value. [moby/buildkit#5614](https://github.com/moby/buildkit/pull/5614)
28+
- Allow syntax forwarding for external frontends for files starting with a Byte Order Mark (BOM). [moby/buildkit#5645](https://github.com/moby/buildkit/pull/5645)
29+
- Default `PATH` in Windows Containers has been updated with `powershell.exe` directory. [moby/buildkit#5446](https://github.com/moby/buildkit/pull/5446)
30+
- Fix Dockerfile directive parsing to not allow invalid syntax. [moby/buildkit#5646](https://github.com/moby/buildkit/pull/5646)
31+
- Fix case where `ONBUILD` command may have run twice on inherited stage. [moby/buildkit#5593](https://github.com/moby/buildkit/pull/5593)
32+
- Fix possible missing named context replacement for child stages in Dockerfile. [moby/buildkit#5596](https://github.com/moby/buildkit/pull/5596)
33+
34+
## 1.13.0-labs
35+
36+
{{< release-date date="2025-01-20" >}}
37+
38+
The full release note for this release is available
39+
[on GitHub](https://github.com/moby/buildkit/releases/tag/dockerfile%2F1.13.0-labs).
40+
41+
```dockerfile
42+
# syntax=docker.io/docker/dockerfile-upstream:1.13.0-labs
43+
```
44+
45+
- Fix support for non-octal values for `COPY --chmod`. [moby/buildkit#5626](https://github.com/moby/buildkit/pull/5626)
46+
1647
## 1.12.0
1748

1849
{{< release-date date="2024-11-27" >}}

0 commit comments

Comments
 (0)