From 726e7356c867f25d59e1afa38fd227a299eb7389 Mon Sep 17 00:00:00 2001 From: John Hamelink Date: Wed, 18 Aug 2021 10:24:47 +0100 Subject: [PATCH] Fix `--ssh` flag's documentation The docs for the `--ssh` flag weren't rendering correctly, because the vertical bar characer (`|`) is used to define cells in a table in github-flavoured markdown. Signed-off-by: John Hamelink --- docs/reference/buildx_build.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/buildx_build.md b/docs/reference/buildx_build.md index b457f950..a9c1f39b 100644 --- a/docs/reference/buildx_build.md +++ b/docs/reference/buildx_build.md @@ -34,7 +34,7 @@ Start a build | `--pull` | Always attempt to pull a newer version of the image | | [`--push`](#push) | Shorthand for --output=type=registry | | `--secret stringArray` | Secret file to expose to the build: id=mysecret,src=/local/secret | -| `--ssh stringArray` | SSH agent socket or keys to expose to the build (format: default|[=|[,]]) | +| `--ssh stringArray` | SSH agent socket or keys to expose to the build (format: `default\|[=\|[,]]`) | | [`-t`](https://docs.docker.com/engine/reference/commandline/build/#tag-an-image--t), [`--tag stringArray`](https://docs.docker.com/engine/reference/commandline/build/#tag-an-image--t) | Name and optionally a tag in the 'name:tag' format | | [`--target string`](https://docs.docker.com/engine/reference/commandline/build/#specifying-target-build-stage---target) | Set the target build stage to build. |