`; 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); } }); } });

What is Settings Management?

Subscription: Business
For: Administrators

Settings Management lets administrators configure and enforce Docker Desktop settings across end-user machines. It helps maintain consistent configurations and enhances security within your organization.

Who is it for?

Settings Management is designed for organizations that:

  • Require centralized control over Docker Desktop configurations.
  • Aim to standardize Docker Desktop environments across teams.
  • Operate in regulated environments and need to enforce compliance.

This feature is available with a Docker Business subscription.

How it works

Administrators can define settings using one of the following methods:

Enforced settings override user-defined configurations and can't be modified by developers.

Configurable settings

Settings Management supports a broad range of Docker Desktop features, including proxies, network configurations, and container isolation.

For a full list of settings you can enforce, see the Settings reference.

Set up Settings Management

  1. Enforce sign-in to ensure all developers authenticate with your organization.
  2. Choose a configuration method:

After configuration, developers receive the enforced setting when they:

  • Quit and relaunch Docker Desktop, then sign in.
  • Launch and sign in to Docker Desktop for the first time.
Note

Docker Desktop does not automatically prompt users to restart or re-authenticate after a settings change.

Developer experience

When settings are enforced:

  • Options appear grayed out in Docker Desktop and can't be modified via the Dashboard, CLI, or configuration files.
  • If Enhanced Container Isolation is enabled, developers can't use privileged containers or similar methods to alter enforced settings within the Docker Desktop Linux VM.

What's next?

Learn more