`; resultsHTML += results .map((item) => { return `
${item.meta.title}

…${item.excerpt}…

`; }) .join(""); if (resultsLength > 5) { resultsHTML += ``; } searchBarResults.innerHTML = resultsHTML; } } searchBarInput.addEventListener("input", search); if (window.heap !== undefined) { searchBarResults.addEventListener('click', function (event) { if (event.target.tagName === 'A' && event.target.closest('.link')) { const searchQuery = event.target.getAttribute('data-query'); const resultIndex = event.target.getAttribute('data-index'); const url = new URL(event.target.href); const properties = { docs_search_target_path: url.pathname, docs_search_target_title: event.target.textContent, docs_search_query_text: searchQuery, docs_search_target_index: resultIndex, docs_search_source_path: window.location.pathname, docs_search_source_title: document.title, }; heap.track("Docs - Search - Click - Result Link", properties); } }); } });

Install Docker Desktop from the Microsoft Store on Windows

You can deploy Docker Desktop for Windows through the Microsoft app store.

The Microsoft Store version of Docker Desktop provides the same functionality as the standard installer but has a different update behavior depending on whether your developers install it themselves or if installation is handled by an MDM tool such as Intune. This is described in the following section.

Choose the installation method that best aligns with your environment's requirements and management practices.

Update behavior

Developer-managed installations

For developers who install Docker Desktop directly:

  • The Microsoft Store does not automatically update Win32 apps like Docker Desktop for most users.
  • Only a subset of users (approximately 20%) may receive update notifications on the Microsoft Store page.
  • Most users must manually check for and apply updates within the Store.

Intune-managed installations

In environments managed with Intune:

  • Intune checks for updates approximately every 8 hours.
  • When a new version is detected, Intune triggers a winget upgrade.
  • If appropriate policies are configured, updates can occur automatically without user intervention.
  • Updates are handled by Intune's management infrastructure rather than the Microsoft Store itself.

WSL considerations

Docker Desktop for Windows integrates closely with WSL. When updating Docker Desktop installed from the Microsoft Store:

  • Make sure you have quit Docker Desktop and that it is no longer running so updates can complete successfully
  • In some environments, virtual hard disk (VHDX) file locks may prevent the update from completing.

Recommendations for Intune management

If using Intune to manage Docker Desktop for Windows:

  • Ensure your Intune policies are configured to handle application updates
  • Be aware that the update process uses WinGet APIs rather than direct Store mechanisms
  • Consider testing the update process in a controlled environment to verify proper functionality