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
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,7 @@ For more information, see [Networking](/manuals/desktop/features/networking.md#n
| `allowBetaFeatures` | | If `value` is set to `true`, beta features are enabled. | |
| `enableDockerAI` | | If `allowBetaFeatures` is true, setting `enableDockerAI` to `true` enables [Docker AI (Ask Gordon)](/manuals/ai/gordon/_index.md) by default. You can independently control this setting from the `allowBetaFeatures` setting. | |
| `enableInference` | | If `allowBetaFeatures` is true, setting `enableInference` to `true` enables [Docker Model Runner](/manuals/ai/model-runner/_index.md) by default. You can independently control this setting from the `allowBetaFeatures` setting. | |
|         `enableInferenceTCP` | | Enable host-side TCP support. This setting requires Docker Model Runner setting to be enabled first. | |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
|         `enableInferenceTCP` | | Enable host-side TCP support. This setting requires Docker Model Runner setting to be enabled first. | |
| `enableInferenceTCP` | | Enable host-side TCP support. This setting requires Docker Model Runner setting to be enabled first. | |

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

but this setting depends on the 'enableInference' setting, so I've nested it, like we do with other settings above

Copy link
Contributor

@ArthurFlag ArthurFlag Jun 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh ok, that's a little weird IMHO because that's not semantic nesting, that's just visual. Ideally we should have a sub table, or use a different notation like prop1.prop2, or use nested LI tags.

That probably should be reworked, especially if we want AI to understand it too :)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

True, noted, will address in a follow-up.

| `enableDockerMCPToolkit` | | If `allowBetaFeatures` is true, setting `enableDockerMCPToolkit` to `true` enables the [MCP toolkit feature](/manuals/ai/mcp-catalog-and-toolkit/toolkit.md) by default. You can independently control this setting from the `allowBetaFeatures` setting. | |
| `allowExperimentalFeatures` | | If `value` is set to `true`, experimental features are enabled. | Docker Desktop version 4.41 and earlier |

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -793,6 +793,7 @@
- **Use case:** Enable or disable Docker Model Runner features.
- **Configure this setting with:**
- **Beta** settings in [Docker Desktop GUI](/manuals/desktop/settings-and-maintenance/settings.md)
- Settings Management: `enableDockerAI` setting in the [`admin-settings.json` file](/manuals/security/for-admins/hardened-desktop/settings-management/configure-json-file.md)

### Enable host-side TCP support

Expand All @@ -805,11 +806,48 @@
- **Use case:** Enable or disable Docker Model Runner features.
- **Configure this setting with:**
- **Beta** settings in [Docker Desktop GUI](/manuals/desktop/settings-and-maintenance/settings.md)
- Settings Management: `enableDockerAI` setting in the [`admin-settings.json` file](/manuals/security/for-admins/hardened-desktop/settings-management/configure-json-file.md)


> [!NOTE]
>
> This setting requires Docker Model Runner setting to be enabled first.

### Enable Docker MCP Toolkit

Check warning on line 816 in content/manuals/security/for-admins/hardened-desktop/settings-management/settings-reference.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Docker.HeadingSentenceCase] Use sentence case for headings: 'Enable Docker MCP Toolkit'. Raw Output: {"message": "[Docker.HeadingSentenceCase] Use sentence case for headings: 'Enable Docker MCP Toolkit'.", "location": {"path": "content/manuals/security/for-admins/hardened-desktop/settings-management/settings-reference.md", "range": {"start": {"line": 816, "column": 5}}}, "severity": "WARNING"}

| Default value | Accepted values | Format |
|---------------|-----------------|----------|
| `true` | `true`, `false` | Boolean |

- **Description:** Enable [Docker MCP Toolkit](/manuals/ai/mcp-catalog-and-toolkit/_index.md) in Docker Desktop.
- **OS:** {{< badge color=blue text="All" >}}
- **Configure this setting with:**
- **Beta** settings in [Docker Desktop GUI](/manuals/desktop/settings-and-maintenance/settings.md)
- Settings Management: `enableDockerMCPToolkit` setting in the [`admin-settings.json` file](/manuals/security/for-admins/hardened-desktop/settings-management/configure-json-file.md)


### Enable Wasm

| Default value | Accepted values | Format |
|---------------|-----------------|----------|
| `true` | `true`, `false` | Boolean |

- **Description:** Enable [Wasm](/manuals/desktop/features/wasm.md) to run Wasm workloads.
- **OS:** {{< badge color=blue text="All" >}}
- **Configure this setting with:**
- **Beta** settings in [Docker Desktop GUI](/manuals/desktop/settings-and-maintenance/settings.md)

### Enable Compose Bridge

| Default value | Accepted values | Format |
|---------------|-----------------|----------|
| `true` | `true`, `false` | Boolean |

- **Description:** Enable [Compose Bridge](/manuals/compose/bridge/_index.md).
- **OS:** {{< badge color=blue text="All" >}}
- **Configure this setting with:**
- **Beta** settings in [Docker Desktop GUI](/manuals/desktop/settings-and-maintenance/settings.md)

## Notifications

### Status updates on tasks and processes
Expand Down