Skip to content

Commit 03bcad3

Browse files
Merge pull request #22427 from docker/published-update
publish updates from main
2 parents e51fcb4 + 830a2f1 commit 03bcad3

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ For example, in a Node.js project, it's not recommended to sync the `node_module
4040

4141
The `watch` attribute defines a list of rules that control automatic service updates based on local file changes.
4242

43-
Each rule requires, a `path` pattern and `action` to take when a modification is detected. There are two possible actions for `watch` and depending on
43+
Each rule requires a `path` pattern and `action` to take when a modification is detected. There are two possible actions for `watch` and depending on
4444
the `action`, additional fields might be accepted or required.
4545

4646
Watch mode can be used with many different languages and frameworks.
@@ -95,8 +95,8 @@ image rebuild (e.g. `package.json`).
9595

9696
If `action` is set to `sync+restart`, Compose synchronizes your changes with the service containers and restarts it.
9797

98-
`sync+restart` is ideal when config file changes, and you don't need to rebuild the image but just restart the main process of the service containers.
99-
It will work well when you update a database configuration or your `nginx.conf` file for example
98+
`sync+restart` is ideal when the config file changes, and you don't need to rebuild the image but just restart the main process of the service containers.
99+
It will work well when you update a database configuration or your `nginx.conf` file, for example.
100100

101101
>[!TIP]
102102
>
@@ -116,7 +116,7 @@ For `path: ./app/html` and a change to `./app/html/index.html`:
116116

117117
### `ignore`
118118

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.
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.
120120

121121
## Example 1
122122

content/manuals/engine/network/tutorials/standalone.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ aliases:
99
This series of tutorials deals with networking for standalone Docker containers.
1010
For networking with swarm services, see
1111
[Networking with swarm services](/manuals/engine/network/tutorials/overlay.md). If you need to
12-
learn more about Docker networking in general, see the [overview](_index.md).
12+
learn more about Docker networking in general, see the [overview](/manuals/engine/network/_index.md).
1313

1414
This topic includes two different tutorials. You can run each of them on
1515
Linux, Windows, or a Mac, but for the last one, you need a second Docker

content/manuals/engine/storage/volumes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ $ docker run --rm \
494494
alpine mkdir -p /logs/app1 /logs/app2
495495
$ docker run -d \
496496
--name=app1 \
497-
--mount src=logs,dst=/var/log/app1/,volume-subpath=app1 \
497+
--mount src=logs,dst=/var/log/app1,volume-subpath=app1 \
498498
app1:latest
499499
$ docker run -d \
500500
--name=app2 \
@@ -552,7 +552,7 @@ volume.
552552
The following example assumes that you have two nodes, the first of which is a Docker
553553
host and can connect to the second node using SSH.
554554

555-
On the Docker host, install the `vieux/sshfs` plugin:
555+
On the Docker host, install the `rclone/docker-volume-rclone` plugin:
556556

557557
```console
558558
$ docker plugin install --grant-all-permissions rclone/docker-volume-rclone --aliases rclone

0 commit comments

Comments
 (0)