@@ -14,7 +14,8 @@ Ensure the following tools and components are available before proceeding:
14
14
1 . [ Docker Buildx] ( https://github.com/docker/buildx ) : A CLI plugin for advanced
15
15
image building.
16
16
2 . Build Driver for Multi-Architecture Images: For example, ` docker-container `
17
- (see [ Build Drivers] ( https://docs.docker.com/build/builders/drivers/ ) ).
17
+ (see [ Build Drivers] ( https://docs.docker.com/build/builders/drivers/ ) and
18
+ [ "Install QEMU Manually"] ( https://docs.docker.com/build/building/multi-platform/#install-qemu-manually ) ).
18
19
3 . [ Distribution Registry] ( https://distribution.github.io/distribution/ ) :
19
20
Formerly known as Docker Registry, to host and manage the built images.
20
21
@@ -26,7 +27,7 @@ To confirm your environment is properly set up, run:
26
27
docker buildx bake --check
27
28
```
28
29
29
- If warnings appear, you may need to switch to a different build driver. For
30
+ If errors appear, you may need to switch to a different build driver. For
30
31
example, use the following commands to configure a ` docker-container ` build
31
32
driver:
32
33
@@ -39,6 +40,11 @@ docker buildx create \
39
40
--bootstrap
40
41
```
41
42
43
+ > * Note:* This page is not intended to serve as a comprehensive guide for
44
+ > building multi-architecture images with Docker and Bake. If you encounter any
45
+ > issues, please refer to the resources listed above for detailed instructions
46
+ > and troubleshooting.
47
+
42
48
## Default Target
43
49
44
50
The ` default ` target in Bake represents a Cartesian product of the following
0 commit comments