Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/manuals/build/ci/github-actions/build-summary.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down
33 changes: 30 additions & 3 deletions content/manuals/compose/how-tos/dependent-images.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <project_name>_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
Expand Down
1 change: 1 addition & 0 deletions content/manuals/desktop/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 4 additions & 4 deletions content/manuals/desktop/setup/install/windows-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand All @@ -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]
Expand All @@ -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]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down