Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions content/manuals/compose/how-tos/file-watch.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ For example, in a Node.js project, it's not recommended to sync the `node_module

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

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
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
the `action`, additional fields might be accepted or required.

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

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

`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.
It will work well when you update a database configuration or your `nginx.conf` file for example
`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.
It will work well when you update a database configuration or your `nginx.conf` file, for example.

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

### `ignore`

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

## Example 1

Expand Down
2 changes: 1 addition & 1 deletion content/manuals/engine/network/tutorials/standalone.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ aliases:
This series of tutorials deals with networking for standalone Docker containers.
For networking with swarm services, see
[Networking with swarm services](/manuals/engine/network/tutorials/overlay.md). If you need to
learn more about Docker networking in general, see the [overview](_index.md).
learn more about Docker networking in general, see the [overview](/manuals/engine/network/_index.md).

This topic includes two different tutorials. You can run each of them on
Linux, Windows, or a Mac, but for the last one, you need a second Docker
Expand Down
4 changes: 2 additions & 2 deletions content/manuals/engine/storage/volumes.md
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ $ docker run --rm \
alpine mkdir -p /logs/app1 /logs/app2
$ docker run -d \
--name=app1 \
--mount src=logs,dst=/var/log/app1/,volume-subpath=app1 \
--mount src=logs,dst=/var/log/app1,volume-subpath=app1 \
app1:latest
$ docker run -d \
--name=app2 \
Expand Down Expand Up @@ -552,7 +552,7 @@ volume.
The following example assumes that you have two nodes, the first of which is a Docker
host and can connect to the second node using SSH.

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

```console
$ docker plugin install --grant-all-permissions rclone/docker-volume-rclone --aliases rclone
Expand Down