diff --git a/content/guides/container-supported-development.md b/content/guides/container-supported-development.md index b76918ebdc1..5a2f142f923 100644 --- a/content/guides/container-supported-development.md +++ b/content/guides/container-supported-development.md @@ -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. @@ -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. @@ -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. diff --git a/content/manuals/desktop/release-notes.md b/content/manuals/desktop/release-notes.md index aebb6934a2c..47aaa5bb20b 100644 --- a/content/manuals/desktop/release-notes.md +++ b/content/manuals/desktop/release-notes.md @@ -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" >}} @@ -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 diff --git a/hugo_stats.json b/hugo_stats.json index 0cc860b0665..4cb719a37c9 100644 --- a/hugo_stats.json +++ b/hugo_stats.json @@ -42,6 +42,7 @@ "Docker-Desktop", "Docker-Hub", "Docker-Scout-Dashboard", + "Docker-plan", "Download", "Entra-ID", "Entra-ID-SAML-2.0", @@ -68,6 +69,8 @@ "JavaScript", "Jenkins", "Latest", + "Legacy-Docker-plan", + "Legacy-Docker-plans", "Linux", "Local-or-Hub-storage", "MDM", @@ -138,7 +141,6 @@ "aspect-video", "bake-action", "bg-amber-light", - "bg-amber-light-200", "bg-background-light", "bg-black/50", "bg-black/70", @@ -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", @@ -261,6 +262,7 @@ "flex-col", "flex-col-reverse", "flex-grow", + "flex-grow-0", "flex-none", "flex-shrink", "flex-wrap", @@ -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", diff --git a/layouts/partials/sidebar/sections.html b/layouts/partials/sidebar/sections.html index 988c4557eee..d166b61e21a 100644 --- a/layouts/partials/sidebar/sections.html +++ b/layouts/partials/sidebar/sections.html @@ -8,11 +8,10 @@ {{ 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 }}