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
12 changes: 12 additions & 0 deletions content/guides/container-supported-development.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ With container-supported development, it's easy to run databases locally. In thi

{{< youtube-embed VieWeXOwKLU >}}

> [!TIP]
>
> Learn more about running databases in containers in the [Use containerized databases](/guides/databases.md) guide.

### Demo: mocking API endpoints

Many APIs require data from other data endpoints. In development, this adds complexities such as the sharing of credentials, uptime/availability, and rate limiting. Instead of relying on those services directly, your application can interact with a mock API server.
Expand All @@ -59,6 +63,10 @@ This demo will demonstrate how using WireMock can make it easy to develop and te

{{< youtube-embed VXSmX6f8vo0 >}}

> [!TIP]
>
> Learn more about using WireMock to mock API in the [Mocking API services with WireMock](/guides/wiremock.md) guide.

### Demo: developing the cloud locally

When developing apps, it's often easier to outsource aspects of the application to cloud services, such as Amazon S3. However, connecting to those services in local development introduces IAM policies, networking constraints, and provisioning complications. While these requirements are important in a production setting, they complicate development environments significantly.
Expand All @@ -67,6 +75,10 @@ With container-supported development, you can run local instances of these servi

{{< youtube-embed JtwUMvR5xlY >}}

> [!TIP]
>
> Learn more about using LocalStack in the [Develop and test AWS Cloud applications using LocalStack](/guides/localstack.md) guide.

### Demo: adding additional debug and troubleshooting tools

Once you start using containers in your development environment, it becomes much easier to add additional containers to visualize the contents of the databases or message queues, seed document stores, or event publishers. In this demo, you'll see a few of these examples, as well as how you can connect multiple containers together to make testing even easier.
Expand Down
14 changes: 13 additions & 1 deletion content/manuals/desktop/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,19 @@ Docker Desktop versions older than 6 months from the latest release are not avai

Take a look at the [Docker Public Roadmap](https://github.com/orgs/docker/projects/51/views/1?filterQuery=) to see what's coming next.

## 4.37.1

{{< release-date date="2024-12-17" >}}

{{< desktop-install-v2 all=true beta_win_arm=true version="4.37.1" build_path="/178498/" >}}

### Bug fixes and enhancements

#### For all platforms

- Fixed an issue that caused the AI Catalog in Docker Hub to be unavailable in Docker Desktop.
- Fixed an issue that caused Docker Desktop to panic with `index out of range [0] with length 0` when using [Enhanced Container Isolation](/manuals/security/for-admins/hardened-desktop/enhanced-container-isolation/_index.md).

## 4.37.0

{{< release-date date="2024-12-12" >}}
Expand Down Expand Up @@ -55,7 +68,6 @@ Take a look at the [Docker Public Roadmap](https://github.com/orgs/docker/projec
#### For Mac

- Fixed a bug that would create certain user directories with root permission when running the uninstaller binary twice with `sudo`.
- Fixed a bug where the in-app update would fail if Docker Desktop was installed by a non-admin user or if the current user was previously an administrator. Fixes [docker/for-mac#7403](https://github.com/docker/for-mac/issues/7403) and [docker/for-mac#6920](https://github.com/docker/for-mac/issues/6920).

#### For Windows

Expand Down
7 changes: 5 additions & 2 deletions hugo_stats.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"Docker-Desktop",
"Docker-Hub",
"Docker-Scout-Dashboard",
"Docker-plan",
"Download",
"Entra-ID",
"Entra-ID-SAML-2.0",
Expand All @@ -68,6 +69,8 @@
"JavaScript",
"Jenkins",
"Latest",
"Legacy-Docker-plan",
"Legacy-Docker-plans",
"Linux",
"Local-or-Hub-storage",
"MDM",
Expand Down Expand Up @@ -138,7 +141,6 @@
"aspect-video",
"bake-action",
"bg-amber-light",
"bg-amber-light-200",
"bg-background-light",
"bg-black/50",
"bg-black/70",
Expand Down Expand Up @@ -191,7 +193,6 @@
"containerd-image-store",
"cursor-pointer",
"dark:bg-amber-dark",
"dark:bg-amber-dark-200",
"dark:bg-background-dark",
"dark:bg-blue-dark",
"dark:bg-blue-dark-400",
Expand Down Expand Up @@ -261,6 +262,7 @@
"flex-col",
"flex-col-reverse",
"flex-grow",
"flex-grow-0",
"flex-none",
"flex-shrink",
"flex-wrap",
Expand Down Expand Up @@ -342,6 +344,7 @@
"lg:gap-8",
"lg:grid-cols-2",
"lg:grid-cols-3",
"lg:grid-cols-4",
"lg:hidden",
"lg:no-underline",
"lg:pb-2",
Expand Down
3 changes: 1 addition & 2 deletions layouts/partials/sidebar/sections.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,10 @@
</nav>

{{ define "renderChildren" }}
{{- $pages := .Pages }}
{{- $pages := where .Pages "Params.sitemap" "ne" "false" }}
{{- if .Params.sidebar.reverse }}
{{ $pages = .Pages.Reverse }}
{{- end }}
{{- $pages = where .Pages "Params.sitemap" "ne" "false" }}
{{- $ungrouped := where $pages "Params.sidebar.group" "==" nil }}
{{- range $ungrouped }}
{{- if .IsSection }}
Expand Down