From b64e6dbb774e1d0005a268172c7f3c13b6d6d869 Mon Sep 17 00:00:00 2001 From: Anthony Nandaa Date: Tue, 10 Jun 2025 19:50:24 +0300 Subject: [PATCH 1/4] buildkit: windows: add a note for managed containerd process If you run two instanced of `containerd` one being used by the standalone `buildkitd.exe` and another one being managed by `dockerd.exe`, you end up with some conflicts and errors like: ``` hcsshim::ImportLayer failed in Win32: Cannot create a file when that file already exists. (0xb7) ``` This fix adds a note to guide the user to use only one instance of `containerd` instead, if for this purpose. --- content/manuals/build/buildkit/_index.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/content/manuals/build/buildkit/_index.md b/content/manuals/build/buildkit/_index.md index 89d75f2ad539..35afb1ee6ad9 100644 --- a/content/manuals/build/buildkit/_index.md +++ b/content/manuals/build/buildkit/_index.md @@ -154,7 +154,7 @@ see [GitHub issues](https://github.com/moby/buildkit/issues?q=is%3Aissue%20state 4. Download and extract the latest BuildKit release. ```powershell - $version = "v0.13.1" # specify the release version, v0.13+ + $version = "v0.22.0" # specify the release version, v0.13+ $arch = "amd64" # arm64 binary available too curl.exe -LO https://github.com/moby/buildkit/releases/download/$version/buildkit-$version.windows-$arch.tar.gz # there could be another `.\bin` directory from containerd instructions @@ -184,6 +184,9 @@ see [GitHub issues](https://github.com/moby/buildkit/issues?q=is%3Aissue%20state ```console > buildkitd.exe ``` + > [!NOTE] + > If you are running a _dockerd-managed_ `containerd` process, use that instead, by supplying the address: + > `buildkitd.exe --containerd-worker-addr "npipe:////./pipe/docker-containerd"` 7. In another terminal with administrator privileges, create a remote builder that uses the local BuildKit daemon. From 7655594deb65856272f752c399de626bfd099d14 Mon Sep 17 00:00:00 2001 From: Dorin Geman Date: Wed, 11 Jun 2025 20:01:27 +0300 Subject: [PATCH 2/4] revert model-cli commands that are not part of v0.1.24 Signed-off-by: Dorin Geman --- content/reference/cli/docker/model/df.md | 16 ---------------- content/reference/cli/docker/model/ps.md | 16 ---------------- content/reference/cli/docker/model/unload.md | 16 ---------------- 3 files changed, 48 deletions(-) delete mode 100644 content/reference/cli/docker/model/df.md delete mode 100644 content/reference/cli/docker/model/ps.md delete mode 100644 content/reference/cli/docker/model/unload.md diff --git a/content/reference/cli/docker/model/df.md b/content/reference/cli/docker/model/df.md deleted file mode 100644 index 98b15f3a52cc..000000000000 --- a/content/reference/cli/docker/model/df.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -datafolder: model-cli -datafile: docker_model_df -title: docker model df -layout: cli -aliases: -- /engine/reference/commandline/model_df/ ---- - - diff --git a/content/reference/cli/docker/model/ps.md b/content/reference/cli/docker/model/ps.md deleted file mode 100644 index 3f02272249d0..000000000000 --- a/content/reference/cli/docker/model/ps.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -datafolder: model-cli -datafile: docker_model_ps -title: docker model ps -layout: cli -aliases: -- /engine/reference/commandline/model_ps/ ---- - - diff --git a/content/reference/cli/docker/model/unload.md b/content/reference/cli/docker/model/unload.md deleted file mode 100644 index b6e914b2a685..000000000000 --- a/content/reference/cli/docker/model/unload.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -datafolder: model-cli -datafile: docker_model_unload -title: docker model unload -layout: cli -aliases: -- /engine/reference/commandline/model_unload/ ---- - - From 8b0899066aeef20dd65f370752d498592638c8b9 Mon Sep 17 00:00:00 2001 From: sarahsanders-docker Date: Wed, 11 Jun 2025 15:10:37 -0400 Subject: [PATCH 3/4] add build cache space section to build cloud docs --- .../manuals/build-cloud/builder-settings.md | 27 +++++++++++++++---- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/content/manuals/build-cloud/builder-settings.md b/content/manuals/build-cloud/builder-settings.md index a77402c7c45e..7465fe5f524e 100644 --- a/content/manuals/build-cloud/builder-settings.md +++ b/content/manuals/build-cloud/builder-settings.md @@ -8,15 +8,32 @@ The **Builder settings** page in Docker Build Cloud lets you configure disk allo ## Disk allocation -The **Disk allocation** setting lets you control how much of the available storage is dedicated to the build cache. A lower allocation increases storage available for active builds. +The **Disk allocation** setting lets you control how much of the available +storage is dedicated to the build cache. A lower allocation increases +storage available for active builds. -To make disk allocation changes, navigate to **Builder settings** in Docker Build Cloud and then adjust the **Disk allocation** slider to specify the percentage of storage used for build caching. +To make disk allocation changes, navigate to **Builder settings** in Docker +Build Cloud and then adjust the **Disk allocation** slider to specify the +percentage of storage used for build caching. Any changes take effect immediately. +### Build cache space + +Your subscription includes the following Build cache space: + +| Subscription | Build cache space | +|--------------|-------------------| +| Personal | N/A | +| Pro | 50GB | +| Team | 100GB | +| Business | 200GB | + +To get more Build cache space, [upgrade your subscription](/manuals/subscription/change.md). + > [!TIP] -> -> If you build very large images, consider allocating less storage for caching. +> +> If you build large images, consider allocating less storage for caching. ## Private resource access @@ -26,7 +43,7 @@ For example, if your organization hosts a private [PyPI](https://pypi.org/) repo To enable your cloud builders to access your private resources, enter the host name and port of your private resource and then select **Add**. -### Authentication +### Authentication If your internal artifacts require authentication, make sure that you authenticate with the repository either before or during the build. For From e62de74623b738dadf5caa87a6574ae3583cfd3f Mon Sep 17 00:00:00 2001 From: Kevin Wittek Date: Thu, 12 Jun 2025 07:36:48 +0200 Subject: [PATCH 4/4] docs: add GGUF packaging feature to DMR key feature section --- content/manuals/ai/model-runner/_index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/manuals/ai/model-runner/_index.md b/content/manuals/ai/model-runner/_index.md index cfd11ae838fd..eaecd86245b0 100644 --- a/content/manuals/ai/model-runner/_index.md +++ b/content/manuals/ai/model-runner/_index.md @@ -19,6 +19,7 @@ aliases: ## Key features - [Pull and push models to and from Docker Hub](https://hub.docker.com/u/ai) +- Package GGUF files as OCI Artifacts and publish them to any Container Registry - Run and interact with AI models directly from the command line or from the Docker Desktop GUI - Manage local models and display logs