diff --git a/content/manuals/build/ci/github-actions/build-summary.md b/content/manuals/build/ci/github-actions/build-summary.md index a2e74b5093c3..9472ead8e685 100644 --- a/content/manuals/build/ci/github-actions/build-summary.md +++ b/content/manuals/build/ci/github-actions/build-summary.md @@ -67,7 +67,7 @@ in the YAML configuration for your build step: ```yaml {hl_lines=4} - name: Build - uses: docker/docker-build-push-action@v6 + uses: docker/build-push-action@v6 env: DOCKER_BUILD_SUMMARY: false with: @@ -83,7 +83,7 @@ your build step: ```yaml {hl_lines=4} - name: Build - uses: docker/docker-build-push-action@v6 + uses: docker/build-push-action@v6 env: DOCKER_BUILD_RECORD_UPLOAD: false with: diff --git a/content/manuals/compose/how-tos/dependent-images.md b/content/manuals/compose/how-tos/dependent-images.md index a8a462539c9b..238f27efb40a 100644 --- a/content/manuals/compose/how-tos/dependent-images.md +++ b/content/manuals/compose/how-tos/dependent-images.md @@ -99,11 +99,38 @@ services: b: image: service_b build: - context: b/ dockerfile: b.Dockerfile additional_contexts: - # `FROM service_a` will be resolved as a dependency on service a which has to be built first - service_a: "service:a" + # `FROM service_a` will be resolved as a dependency on service "a" which has to be built first + service_a: "service:a" +``` + +With the `additional_contexts` attribute, you can refer to an image built by another service without needing to explicitly name it: + +b.Dockerfile: + +```dockerfile + +FROM base_image +# `base_image` doesn't resolve to an actual image. This is used to point to a named additional context + +# build service b +``` + +Compose file: + +```yaml +services: + a: + build: + dockerfile: a.Dockerfile + # built image will be tagged _a + b: + build: + dockerfile: b.Dockerfile + additional_contexts: + # `FROM base_image` will be resolved as a dependency on service "a" which has to be built first + base_image: "service:a" ``` ## Build with Bake diff --git a/content/manuals/desktop/release-notes.md b/content/manuals/desktop/release-notes.md index 2e0a851590c0..54c47acc4749 100644 --- a/content/manuals/desktop/release-notes.md +++ b/content/manuals/desktop/release-notes.md @@ -61,6 +61,7 @@ For more frequently asked questions, see the [FAQs](/manuals/desktop/troubleshoo - Fixed an issue that caused clients other than the CLI and Docker Desktop to see a delay of 3 seconds whenever a container with port-mappings exists. See [docker/for-mac#7575](https://github.com/docker/for-mac/issues/7575) - Fixed a bug in the ECI Docker socket permissions which caused it to sometimes block Docker socket mounts on containers with allowed images, or images derived from allowed images. - Fixed a bug that prevented Docker Desktop from entering Resource Saver mode again immediately after an engine restart. +- Fixed an issue that caused Kubernetes clusters to stop working due to expired PKI certificates. #### For Mac diff --git a/content/manuals/desktop/setup/install/windows-install.md b/content/manuals/desktop/setup/install/windows-install.md index 2e416eecbfc0..91e432258231 100644 --- a/content/manuals/desktop/setup/install/windows-install.md +++ b/content/manuals/desktop/setup/install/windows-install.md @@ -55,7 +55,7 @@ _For checksums, see [Release notes](/manuals/desktop/release-notes.md)_ WSL 2 on Windows 10 or Windows 11: - 64-bit processor with [Second Level Address Translation (SLAT)](https://en.wikipedia.org/wiki/Second_Level_Address_Translation) - 4GB system RAM - - Enable hardware virtualization in BIOS. For more information, see + - Enable hardware virtualization in BIOS/UEFI. For more information, see [Virtualization](/manuals/desktop/troubleshoot-and-support/troubleshoot/topics.md#virtualization). For more information on setting up WSL 2 with Docker Desktop, see [WSL](/manuals/desktop/features/wsl/_index.md). @@ -80,8 +80,8 @@ For more information on setting up WSL 2 with Docker Desktop, see [WSL](/manuals - 64 bit processor with [Second Level Address Translation (SLAT)](https://en.wikipedia.org/wiki/Second_Level_Address_Translation) - 4GB system RAM - - Turn on BIOS-level hardware virtualization support in the - BIOS settings. For more information, see + - Turn on BIOS/UEFI-level hardware virtualization support in the + BIOS/UEFI settings. For more information, see [Virtualization](/manuals/desktop/troubleshoot-and-support/troubleshoot/topics.md#virtualization). > [!NOTE] @@ -105,7 +105,7 @@ For more information on setting up WSL 2 with Docker Desktop, see [WSL](/manuals WSL 2 on Windows 10 or Windows 11: - 64-bit processor with [Second Level Address Translation (SLAT)](https://en.wikipedia.org/wiki/Second_Level_Address_Translation) - 4GB system RAM - - Enable hardware virtualization in BIOS. For more information, see + - Enable hardware virtualization in BIOS/UEFI. For more information, see [Virtualization](/manuals/desktop/troubleshoot-and-support/troubleshoot/topics.md#virtualization). > [!IMPORTANT] diff --git a/content/manuals/desktop/troubleshoot-and-support/feedback.md b/content/manuals/desktop/troubleshoot-and-support/feedback.md index 513ef1e307e4..3394c6de3949 100644 --- a/content/manuals/desktop/troubleshoot-and-support/feedback.md +++ b/content/manuals/desktop/troubleshoot-and-support/feedback.md @@ -4,6 +4,8 @@ keywords: Feedback, Docker Desktop, Linux, Mac, Windows, Dev Environments, Exten Community forum, bugs, problems, issues title: Give feedback weight: 40 +aliases: + - /desktop/feedback/ --- There are many ways you can provide feedback on Docker Desktop or Docker Desktop features.