Skip to content

Commit 429aac4

Browse files
authored
Merge pull request #21946 from docker/published-update
publish updates from main
2 parents 9ca492a + 0020f7d commit 429aac4

File tree

13 files changed

+19
-10
lines changed

13 files changed

+19
-10
lines changed

content/manuals/admin/organization/onboard.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ By default, members of your organization can use Docker Desktop without signing
8686
in. When users don’t sign in as a member of your organization, they don’t
8787
receive the [benefits of your organization’s subscription](../../subscription/details.md) and they can circumvent [Docker’s security features](/security/for-admins/hardened-desktop/).
8888

89-
There are multiple ways you can enforce sign-in, depending on your company's
90-
set up and preferences:
89+
There are multiple ways you can enforce sign-in, depending on your company's setup and preferences:
9190
- [Registry key method (Windows only)](/security/for-admins/enforce-sign-in/methods/#registry-key-method-windows-only)
9291
- [`.plist` method (Mac only)](/security/for-admins/enforce-sign-in/methods/#plist-method-mac-only)
9392
- [`registry.json` method (All)](/security/for-admins/enforce-sign-in/methods/#registryjson-method-all)

content/manuals/build/bake/_index.md

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

9-
{{< summary-bar feature_name="Build bake" >}}
10-
119
Bake is a feature of Docker Buildx that lets you define your build configuration
1210
using a declarative file, as opposed to specifying a complex CLI expression. It
1311
also lets you run multiple builds concurrently with a single invocation.

content/manuals/build/building/multi-platform.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ Steps:
468468
WORKDIR /app
469469
ADD https://github.com/dvdksn/buildme.git#eb6279e0ad8a10003718656c6867539bd9426ad8 .
470470
-RUN go build -o server .
471-
RUN GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o server .
471+
+RUN GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o server .
472472

473473
FROM alpine
474474
COPY --from=build /app/server /server

content/manuals/compose/how-tos/file-watch.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ aliases:
1212
{{% include "compose/watch.md" %}}
1313

1414
`watch` adheres to the following file path rules:
15-
* All paths are relative to the project directory
15+
* All paths are relative to the project directory, apart from ignore file patterns
1616
* Directories are watched recursively
1717
* Glob patterns aren't supported
1818
* Rules from `.dockerignore` apply
@@ -114,14 +114,19 @@ For `path: ./app/html` and a change to `./app/html/index.html`:
114114
* `target: /app/static` -> `/app/static/index.html`
115115
* `target: /assets` -> `/assets/index.html`
116116

117+
### `ignore`
118+
119+
The `ignore` patterns are relative to the `path` defined in the current `watch` action, not to the project directory. In the following Example 1, the ignore path would be relative to the `./web` directory specified in the `path` attribute.
120+
117121
## Example 1
118122

119123
This minimal example targets a Node.js application with the following structure:
120124
```text
121125
myproject/
122126
├── web/
123127
│ ├── App.jsx
124-
│ └── index.js
128+
│ ├── index.js
129+
│ └── node_modules/
125130
├── Dockerfile
126131
├── compose.yaml
127132
└── package.json
@@ -152,6 +157,8 @@ For example, `./web/App.jsx` is copied to `/src/web/App.jsx`.
152157

153158
Once copied, the bundler updates the running application without a restart.
154159

160+
And in this case, the `ignore` rule would apply to `myproject/web/node_modules/`, not `myproject/node_modules/`.
161+
155162
Unlike source code files, adding a new dependency can’t be done on-the-fly, so whenever `package.json` is changed, Compose
156163
rebuilds the image and recreates the `web` service container.
157164

content/manuals/desktop/settings-and-maintenance/backup-and-restore.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ keywords: Docker Desktop, backup, restore, migration, reinstall, containers, ima
44
volumes
55
weight: 20
66
aliases:
7-
- /desktop/backup-and-restore.md
7+
- /desktop/backup-and-restore/
88
---
99

1010
Use the following procedure to save and restore your images and container data. This is useful if you want to reset your VM disk or to move your Docker environment to a new

content/manuals/desktop/setup/install/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ title: Install
55
weight: 10
66
aliases:
77
- /desktop/install/
8+
- /desktop/setup/install/
89
---

content/manuals/desktop/troubleshoot-and-support/faqs/general.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ aliases:
99
- /docker-for-mac/faqs/
1010
- /docker-for-windows/faqs/
1111
- /desktop/faqs/
12+
- /desktop/faqs/general/
1213
weight: 10
1314
---
1415

content/manuals/desktop/troubleshoot-and-support/faqs/linuxfaqs.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ linkTitle: Linux
66
tags: [FAQ]
77
aliases:
88
- /desktop/linux/space/
9+
- /desktop/faqs/linuxfaqs/
910
weight: 40
1011
---
1112

content/manuals/desktop/troubleshoot-and-support/faqs/macfaqs.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ tags: [FAQ]
77
aliases:
88
- /desktop/mac/space/
99
- /docker-for-mac/space/
10+
- /desktop/faqs/macfaqs/
1011
weight: 20
1112
---
1213

content/manuals/engine/network/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ keywords: networking, container, standalone, IP address, DNS resolution
77
aliases:
88
- /articles/networking/
99
- /config/containers/container-networking/
10+
- /engine/tutorials/networkingcontainers/
1011
- /engine/userguide/networking/
1112
- /engine/userguide/networking/configure-dns/
1213
- /engine/userguide/networking/default_network/binding/

0 commit comments

Comments
 (0)