Skip to content

Commit 9ac25c0

Browse files
authored
Update configure-builder.md deprecated field
1 parent 8c3965b commit 9ac25c0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

content/manuals/build/ci/github-actions/configure-builder.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@ Logs will be available at the end of a job:
6767

6868
You can provide a [BuildKit configuration](../../buildkit/toml-configuration.md)
6969
to your builder if you're using the [`docker-container` driver](/manuals/build/builders/drivers/docker-container.md)
70-
(default) with the `config` or `config-inline` inputs:
70+
(default) with the `config` or `buildkitd-config-inline` inputs:
7171

7272
### Registry mirror
7373

7474
You can configure a registry mirror using an inline block directly in your
75-
workflow with the `config-inline` input:
75+
workflow with the `buildkitd-config-inline` input:
7676

7777
```yaml
7878
name: ci
@@ -87,7 +87,7 @@ jobs:
8787
- name: Set up Docker Buildx
8888
uses: docker/setup-buildx-action@v3
8989
with:
90-
config-inline: |
90+
buildkitd-config-inline: |
9191
[registry."docker.io"]
9292
mirrors = ["mirror.gcr.io"]
9393
```
@@ -99,7 +99,7 @@ For more information about using a registry mirror, see [Registry mirror](../../
9999
You can limit the parallelism of the BuildKit solver which is particularly
100100
useful for low-powered machines.
101101

102-
You can use the `config-inline` input like the previous example, or you can use
102+
You can use the `buildkitd-config-inline` input like the previous example, or you can use
103103
a dedicated BuildKit config file from your repository if you want with the
104104
`config` input:
105105

0 commit comments

Comments
 (0)