@@ -11,7 +11,7 @@ keywords: build, buildkit
1111is an improved backend to replace the legacy builder. BuildKit is the default builder
1212for users on Docker Desktop, and Docker Engine as of version 23.0.
1313
14- BuildKit provides new functionality and improves your builds' performance.
14+ BuildKit provides improved functionality and improves your builds' performance.
1515It also introduces support for handling more complex scenarios:
1616
1717- Detect and skip executing unused build stages
@@ -21,14 +21,13 @@ It also introduces support for handling more complex scenarios:
2121- Detect and skip transferring unused files in your
2222 [ build context] ( ../concepts/context.md )
2323- Use [ Dockerfile frontend] ( frontend.md ) implementations with many
24- new features
24+ additional features
2525- Avoid side effects with rest of the API (intermediate images and containers)
2626- Prioritize your build cache for automatic pruning
2727
28- Apart from many new features, the main areas BuildKit improves on the current
29- experience are performance, storage management, and extensibility. From the
30- performance side, a significant update is a new fully concurrent build graph
31- solver. It can run build steps in parallel when possible and optimize out
28+ The main areas BuildKit improves on the legacy builder are performance, storage
29+ management, and extensibility. From the performance side, a significant update
30+ is a fully concurrent build graph solver. It can run build steps in parallel when possible and optimize out
3231commands that don't have an impact on the final result.
3332The access to the local source files has also been optimized. By tracking
3433only the updates made to these
@@ -180,11 +179,13 @@ see [GitHub issues](https://github.com/moby/buildkit/issues?q=is%3Aissue%20state
180179 $Env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + `
181180 [System.Environment]::GetEnvironmentVariable("Path","User")
182181 ```
182+
1831836 . Start the BuildKit daemon.
184184
185185 ``` console
186186 > buildkitd.exe
187187 ```
188+
188189 > [ !NOTE]
189190 > If you are running a _ dockerd-managed_ ` containerd ` process, use that instead, by supplying the address:
190191 > ` buildkitd.exe --containerd-worker-addr "npipe:////./pipe/docker-containerd" `
0 commit comments