From 6c659e6882422e74f43471d901ad83ed6ee1af36 Mon Sep 17 00:00:00 2001 From: aevesdocker Date: Tue, 7 Oct 2025 10:06:59 +0100 Subject: [PATCH 1/5] build: new driver-opt parameter --- content/manuals/build/builders/drivers/docker-container.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/manuals/build/builders/drivers/docker-container.md b/content/manuals/build/builders/drivers/docker-container.md index 025db83eba5d..a966008c7410 100644 --- a/content/manuals/build/builders/drivers/docker-container.md +++ b/content/manuals/build/builders/drivers/docker-container.md @@ -49,6 +49,7 @@ pass to `--driver-opt`: | `cgroup-parent` | String | `/docker/buildx` | Sets the cgroup parent of the container if Docker is using the "cgroupfs" driver. | | `restart-policy` | String | `unless-stopped` | Sets the container's [restart policy](/manuals/engine/containers/start-containers-automatically.md#use-a-restart-policy). | | `env.` | String | | Sets the environment variable `key` to the specified `value` in the container. | +| `mount.=` | String | | Mounts a host file or directory at `` into the builder container at `` as a read-only bind mount. | Before you configure the resource limits for the container, read about [configuring runtime resource constraints for containers](/engine/containers/resource_constraints/). From 68808b97a417d56f23f9f3e58d8262f554105579 Mon Sep 17 00:00:00 2001 From: aevesdocker Date: Tue, 14 Oct 2025 10:33:49 +0100 Subject: [PATCH 2/5] new direction --- content/manuals/build/builders/drivers/docker-container.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/manuals/build/builders/drivers/docker-container.md b/content/manuals/build/builders/drivers/docker-container.md index a966008c7410..affead56a5f8 100644 --- a/content/manuals/build/builders/drivers/docker-container.md +++ b/content/manuals/build/builders/drivers/docker-container.md @@ -49,7 +49,7 @@ pass to `--driver-opt`: | `cgroup-parent` | String | `/docker/buildx` | Sets the cgroup parent of the container if Docker is using the "cgroupfs" driver. | | `restart-policy` | String | `unless-stopped` | Sets the container's [restart policy](/manuals/engine/containers/start-containers-automatically.md#use-a-restart-policy). | | `env.` | String | | Sets the environment variable `key` to the specified `value` in the container. | -| `mount.=` | String | | Mounts a host file or directory at `` into the builder container at `` as a read-only bind mount. | +| `no-gha-event` | Boolean | `false` | Automatically injects GitHub Action event metadata into the builder. | Before you configure the resource limits for the container, read about [configuring runtime resource constraints for containers](/engine/containers/resource_constraints/). From e1ba5ec29078949311ad0a9a32ac7faa4e8351af Mon Sep 17 00:00:00 2001 From: Allie Sadler <102604716+aevesdocker@users.noreply.github.com> Date: Tue, 14 Oct 2025 13:48:33 +0100 Subject: [PATCH 3/5] Update content/manuals/build/builders/drivers/docker-container.md Co-authored-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> --- content/manuals/build/builders/drivers/docker-container.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/manuals/build/builders/drivers/docker-container.md b/content/manuals/build/builders/drivers/docker-container.md index affead56a5f8..d4d82e819bff 100644 --- a/content/manuals/build/builders/drivers/docker-container.md +++ b/content/manuals/build/builders/drivers/docker-container.md @@ -49,7 +49,7 @@ pass to `--driver-opt`: | `cgroup-parent` | String | `/docker/buildx` | Sets the cgroup parent of the container if Docker is using the "cgroupfs" driver. | | `restart-policy` | String | `unless-stopped` | Sets the container's [restart policy](/manuals/engine/containers/start-containers-automatically.md#use-a-restart-policy). | | `env.` | String | | Sets the environment variable `key` to the specified `value` in the container. | -| `no-gha-event` | Boolean | `false` | Automatically injects GitHub Action event metadata into the builder. | +| `no-gha-event` | Boolean | `false` | If `true`, don't automatically injects GitHub Action event metadata into the builder for provenance. | Before you configure the resource limits for the container, read about [configuring runtime resource constraints for containers](/engine/containers/resource_constraints/). From 7bf3169cc977a76588ce87c06ad9a98d3179d9d3 Mon Sep 17 00:00:00 2001 From: Allie Sadler <102604716+aevesdocker@users.noreply.github.com> Date: Fri, 24 Oct 2025 12:23:40 +0100 Subject: [PATCH 4/5] Update content/manuals/build/builders/drivers/docker-container.md --- content/manuals/build/builders/drivers/docker-container.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/manuals/build/builders/drivers/docker-container.md b/content/manuals/build/builders/drivers/docker-container.md index d4d82e819bff..5c5db93ffa57 100644 --- a/content/manuals/build/builders/drivers/docker-container.md +++ b/content/manuals/build/builders/drivers/docker-container.md @@ -49,7 +49,7 @@ pass to `--driver-opt`: | `cgroup-parent` | String | `/docker/buildx` | Sets the cgroup parent of the container if Docker is using the "cgroupfs" driver. | | `restart-policy` | String | `unless-stopped` | Sets the container's [restart policy](/manuals/engine/containers/start-containers-automatically.md#use-a-restart-policy). | | `env.` | String | | Sets the environment variable `key` to the specified `value` in the container. | -| `no-gha-event` | Boolean | `false` | If `true`, don't automatically injects GitHub Action event metadata into the builder for provenance. | +| `provenance-add-gha` | Boolean | `false` | If `true`, don't automatically injects GitHub Action event metadata into the builder for provenance. | Before you configure the resource limits for the container, read about [configuring runtime resource constraints for containers](/engine/containers/resource_constraints/). From de95c4b14af8eec336b0131b0bd8ee8ad6311f44 Mon Sep 17 00:00:00 2001 From: Allie Sadler <102604716+aevesdocker@users.noreply.github.com> Date: Mon, 27 Oct 2025 16:27:46 +0000 Subject: [PATCH 5/5] Update content/manuals/build/builders/drivers/docker-container.md Co-authored-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> --- content/manuals/build/builders/drivers/docker-container.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/manuals/build/builders/drivers/docker-container.md b/content/manuals/build/builders/drivers/docker-container.md index 5c5db93ffa57..72071a541756 100644 --- a/content/manuals/build/builders/drivers/docker-container.md +++ b/content/manuals/build/builders/drivers/docker-container.md @@ -49,7 +49,7 @@ pass to `--driver-opt`: | `cgroup-parent` | String | `/docker/buildx` | Sets the cgroup parent of the container if Docker is using the "cgroupfs" driver. | | `restart-policy` | String | `unless-stopped` | Sets the container's [restart policy](/manuals/engine/containers/start-containers-automatically.md#use-a-restart-policy). | | `env.` | String | | Sets the environment variable `key` to the specified `value` in the container. | -| `provenance-add-gha` | Boolean | `false` | If `true`, don't automatically injects GitHub Action event metadata into the builder for provenance. | +| `provenance-add-gha` | Boolean | `true` | Automatically writes GitHub Actions context into the builder for provenance. | Before you configure the resource limits for the container, read about [configuring runtime resource constraints for containers](/engine/containers/resource_constraints/).