mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-24 15:28:54 +00:00
14 lines
275 B
Markdown
14 lines
275 B
Markdown
## BuildKit
|
|
|
|
BuildKit 是下一代的镜像构建组件,在 https://github.com/moby/buildkit 开源。
|
|
|
|
下面介绍如何在 Docker CE 18.09+ 版本中使用 BuildKit 构建 Docker 镜像。
|
|
|
|
```bash
|
|
$ export DOCKER_BUILDKIT=1
|
|
|
|
# Windows
|
|
|
|
$ set $env:DOCKER_BUILDKIT=1
|
|
```
|