|
9 | 9 | GitHub Action to set up Docker [Buildx](https://github.com/docker/buildx). |
10 | 10 |
|
11 | 11 | This action will create and boot a builder that can be used in the following steps of your workflow if you're using |
12 | | -[buildx](https://github.com/docker/buildx). By default, the `docker-container` [builder driver](https://github.com/docker/buildx#--driver-driver) |
| 12 | +[buildx](https://github.com/docker/buildx). By default, the `docker-container` [builder driver](https://github.com/docker/buildx/blob/master/docs/reference/buildx_create.md#driver) |
13 | 13 | will be used to be able to build multi-platform images and export cache thanks to the [BuildKit](https://github.com/moby/buildkit) |
14 | 14 | container. |
15 | 15 |
|
16 | | -> :bulb: See also: |
17 | | -> * [login](https://github.com/docker/login-action) action |
18 | | -> * [setup-qemu](https://github.com/docker/setup-qemu-action) action |
19 | | -> * [build-push](https://github.com/docker/build-push-action) action |
20 | | -
|
21 | 16 |  |
22 | 17 |
|
23 | 18 | ___ |
@@ -128,12 +123,12 @@ Following inputs can be used as `step.with` keys |
128 | 123 | | Name | Type | Description | |
129 | 124 | |--------------------|---------|-----------------------------------| |
130 | 125 | | `version` | String | [Buildx](https://github.com/docker/buildx) version. (eg. `v0.3.0`, `latest`) | |
131 | | -| `driver` | String | Sets the [builder driver](https://github.com/docker/buildx#--driver-driver) to be used (default `docker-container`) | |
132 | | -| `driver-opts` | CSV | List of additional [driver-specific options](https://github.com/docker/buildx#--driver-opt-options) (eg. `image=moby/buildkit:master`) | |
| 126 | +| `driver` | String | Sets the [builder driver](https://github.com/docker/buildx/blob/master/docs/reference/buildx_create.md#driver) to be used (default `docker-container`) | |
| 127 | +| `driver-opts` | CSV | List of additional [driver-specific options](https://github.com/docker/buildx/blob/master/docs/reference/buildx_create.md#driver-opt) (eg. `image=moby/buildkit:master`) | |
133 | 128 | | `buildkitd-flags` | String | [Flags for buildkitd](https://github.com/moby/buildkit/blob/master/docs/buildkitd.toml.md) daemon (since [buildx v0.3.0](https://github.com/docker/buildx/releases/tag/v0.3.0)) | |
134 | 129 | | `install` | Bool | Sets up `docker build` command as an alias to `docker buildx` (default `false`) | |
135 | 130 | | `use` | Bool | Switch to this builder instance (default `true`) | |
136 | | -| `endpoint` | String | [Optional address for docker socket](https://github.com/docker/buildx#buildx-create-options-contextendpoint) or context from `docker context ls` | |
| 131 | +| `endpoint` | String | [Optional address for docker socket](https://github.com/docker/buildx/blob/master/docs/reference/buildx_create.md#description) or context from `docker context ls` | |
137 | 132 |
|
138 | 133 | > `CSV` type must be a newline-delimited string |
139 | 134 | > ```yaml |
|
0 commit comments