From 7b229502a44577c8ab218ab6343c81be57a27777 Mon Sep 17 00:00:00 2001 From: NimRegev Date: Sun, 4 Jun 2023 14:26:00 +0300 Subject: [PATCH 1/5] Update qemu option description for buildx Edited description to indicate supported image and default value --- _docs/pipelines/steps/build.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_docs/pipelines/steps/build.md b/_docs/pipelines/steps/build.md index 2ea7c3c01..55354272d 100644 --- a/_docs/pipelines/steps/build.md +++ b/_docs/pipelines/steps/build.md @@ -104,7 +104,7 @@ step_name: | `retry` | Define retry behavior for the build step, as described in [Retrying a step]({{site.baseurl}}/docs/pipelines/what-is-the-codefresh-yaml/#retrying-a-step). | Optional | | `buildkit` | When set to `true`, enables [Buildkit](#buildkit-support) and all of its enhancements. When using `buildkit` with `cache_from`, to allow the built image to be used as cache for future images, you must specify `BUILDKIT_INLINE_CACHE=1` in the build_arguments. See [more info](https://docs.docker.com/engine/reference/commandline/buildx_build/#cache-to){:target="\_blank"}| Optional | | `platform` | The [target platform or platforms](https://docs.docker.com/build/building/multi-platform/){:target="\_blank"} to which to push the image. For example, `linux/amd64`. To target multiple platforms, separate them with commas, as in `linux/amd64,linux/arm64`.
NOTE: To use this property, you must enable `buildx`. | Optional | -| `buildx` |Build and push Docker images, including multi-platform images, with Buildx. Disabled by default. {::nomarkdown}