Skip to content

Commit 9bb8ceb

Browse files
committed
✨ feat(WIP): docker build
1 parent e29e3ec commit 9bb8ceb

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
88.5 KB
Loading

docker/multi-arch-dockerfile.md

+26
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## 写在前面
44

5+
### Docker Build architecture
6+
7+
Docker Build implements a client-server architecture, where:
8+
9+
- Buildx is the client and the user interface for running and managing builds
10+
- BuildKit is the server, or builder, that handles the build execution.
11+
![Image](./assets/images/build-high-level-arch.png)
12+
13+
> As of Docker Engine 23.0 and Docker Desktop 4.19, Buildx is the default build client.
14+
515
There are currently __four different ways__ that one can build locally with Docker:
616

717
- The legacy builder in Docker Engine: `DOCKER_BUILDKIT=0 docker build .`
@@ -29,8 +39,24 @@ docker manifest push
2939

3040
[Set buildx as default builder](https://github.com/docker/cli/pull/3314)
3141

42+
[Docker container build driver](https://docs.docker.com/build/drivers/docker-container/)
43+
3244
## buildKit
3345

46+
## 应用
47+
48+
如上我们了解到了 buildx、buildKit, 那么如何在自己的环境内使用呢?以下载[buildx v0.13.1](https://github.com/docker/buildx/releases/tag/v0.13.1)为例:
49+
50+
```sh
51+
mkdir ~/.docker/cli-plugins/
52+
53+
wget https://github.com/docker/buildx/releases/download/v0.13.1/buildx-v0.13.1.linux-amd64 -O docker-buildx
54+
55+
chmod +x docker-buildx
56+
57+
docker info
58+
```
59+
3460
## golang project sample
3561

3662
<https://gist.github.com/AverageMarcus/78fbcf45e72e09d9d5e75924f0db4573>

0 commit comments

Comments
 (0)