From fcb958a33f2a14ff6934035b898ec107f5cff83e Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Mon, 28 Apr 2025 14:02:41 +0300 Subject: [PATCH] Fix typos in the Builders manual (#22506) ## Description This pull request fixes a few minor typos in the Builders manual. --- content/manuals/build/builders/_index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/manuals/build/builders/_index.md b/content/manuals/build/builders/_index.md index c926822df0..ccb8d9a620 100644 --- a/content/manuals/build/builders/_index.md +++ b/content/manuals/build/builders/_index.md @@ -69,11 +69,11 @@ selected when you invoke builds. Even though `docker build` is an alias for `docker buildx build`, there are subtle differences between the two commands. With Buildx, the build client and -the and daemon (BuildKit) are decoupled. This means you can use multiple +the daemon (BuildKit) are decoupled. This means you can use multiple builders from a single client, even remote ones. The `docker build` command always defaults to using the default builder that -comes bundled with the Docker Engine, for ensuring backwards compatibility with +comes bundled with the Docker Engine, to ensure backwards compatibility with older versions of the Docker CLI. The `docker buildx build` command, on the other hand, checks whether you've set a different builder as the default builder before it sends your build to BuildKit.