From f550901e656c077d27d5e3a6957930a2ade7c77f Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Thu, 14 May 2026 00:59:26 +0200 Subject: [PATCH] docs: minor grammar fixes Co-authored-by: David Schmitt <118179693+DavidS-om@users.noreply.github.com> Co-authored-by: Callis Ezenwaka Signed-off-by: Sebastiaan van Stijn --- docs/reference/commandline/container_ls.md | 2 +- docs/reference/commandline/image_build.md | 2 +- docs/reference/commandline/image_pull.md | 8 ++++---- docs/reference/commandline/swarm_ca.md | 2 +- man/docker-run.1.md | 2 +- man/src/container/exec.md | 2 +- man/src/volume.md | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/reference/commandline/container_ls.md b/docs/reference/commandline/container_ls.md index 5b2481fe13..bdbff11e70 100644 --- a/docs/reference/commandline/container_ls.md +++ b/docs/reference/commandline/container_ls.md @@ -128,7 +128,7 @@ CONTAINER ID IMAGE COMMAND CREATED 9b6247364a03 busybox "top" 2 minutes ago Up 2 minutes nostalgic_stallman ``` -You can also filter for a substring in a name as this shows: +You can filter for a substring in a name as this shows: ```console $ docker ps --filter "name=nostalgic" diff --git a/docs/reference/commandline/image_build.md b/docs/reference/commandline/image_build.md index 862b00bdc6..5a7a00717b 100644 --- a/docs/reference/commandline/image_build.md +++ b/docs/reference/commandline/image_build.md @@ -113,7 +113,7 @@ COPY failed: forbidden path outside the build context: ../../some-dir () ``` BuildKit on the other hand strips leading relative paths that traverse outside -of the build context. Re-using the previous example, the path `COPY +of the build context. Reusing the previous example, the path `COPY ../../some-dir .` evaluates to `COPY some-dir .` with BuildKit. ## Examples diff --git a/docs/reference/commandline/image_pull.md b/docs/reference/commandline/image_pull.md index aad73fe29a..beb270660a 100644 --- a/docs/reference/commandline/image_pull.md +++ b/docs/reference/commandline/image_pull.md @@ -32,13 +32,13 @@ use `docker pull`. ### Proxy configuration If you are behind an HTTP proxy server, for example in corporate settings, -before open a connect to registry, you may need to configure the Docker -daemon's proxy settings, refer to the [dockerd command-line reference](https://docs.docker.com/reference/cli/dockerd/#proxy-configuration) -for details. +you may have to configure the Docker daemon to use the proxy server for +operations such as pulling and pushing images. Refer to the +[dockerd command-line reference](https://docs.docker.com/reference/cli/dockerd/#proxy-configuration) for details. ### Concurrent downloads -By default the Docker daemon will pull three layers of an image at a time. +By default the Docker daemon downloads three layers of an image at a time. If you are on a low bandwidth connection this may cause timeout issues and you may want to lower this via the `--max-concurrent-downloads` daemon option. See the [daemon documentation](https://docs.docker.com/reference/cli/dockerd/) for more details. diff --git a/docs/reference/commandline/swarm_ca.md b/docs/reference/commandline/swarm_ca.md index 49c2730aa9..337912db80 100644 --- a/docs/reference/commandline/swarm_ca.md +++ b/docs/reference/commandline/swarm_ca.md @@ -58,7 +58,7 @@ desired root digest: sha256:05da740cf2577a25224c53019e2cce99bcc5ba09664ad6bb2a94 rotated CA certificates: [> ] 0/2 nodes ``` -Once the rotation os finished (all the progress bars have completed) the now-current +Once the rotation is finished (all the progress bars have completed) the now-current CA certificate will be printed: ```console diff --git a/man/docker-run.1.md b/man/docker-run.1.md index a2241e0ffc..f1a212b95d 100644 --- a/man/docker-run.1.md +++ b/man/docker-run.1.md @@ -734,7 +734,7 @@ any options, the systems uses the following options: **-u**, **--user**="" Sets the username or UID used and optionally the groupname or GID for the specified command. - The followings examples are all valid: + The following examples are all valid: --user [user | user:group | uid | uid:gid | user:gid | uid:group ] Without this argument the command will be run as root in the container. diff --git a/man/src/container/exec.md b/man/src/container/exec.md index 82d1428d45..0b7deb13c9 100644 --- a/man/src/container/exec.md +++ b/man/src/container/exec.md @@ -19,7 +19,7 @@ the same capabilities as the container, which may be limited. Set # USER `user` sets the username or UID used and optionally the groupname or GID for the specified command. - The followings examples are all valid: + The following examples are all valid: --user [user | user:group | uid | uid:gid | user:gid | uid:group ] Without this argument the command will be run as root in the container. diff --git a/man/src/volume.md b/man/src/volume.md index 0a09a41da3..6f006595d4 100644 --- a/man/src/volume.md +++ b/man/src/volume.md @@ -1,5 +1,5 @@ The `docker volume` command has subcommands for managing data volumes. A data -volume is a specially-designated directory that by-passes storage driver +volume is a specially-designated directory that bypasses storage driver management. Data volumes persist data independent of a container's life cycle. When you