Skip to content

Commit 347524e

Browse files
committed
update docs
1 parent 1fe74d3 commit 347524e

File tree

3 files changed

+69
-64
lines changed

3 files changed

+69
-64
lines changed

content/manuals/ai/model-runner/get-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Get started with [Docker Model Runner](_index.md).
1111

1212
### Enable DMR in Docker Desktop
1313

14-
1. In the settings view, go to the **Beta features** tab.
14+
1. In the settings view, go to the **AI** tab.
1515
1. Select the **Enable Docker Model Runner** setting.
1616
1. If you use Windows with a supported NVIDIA GPU, you also see and can select
1717
**Enable GPU-backed inference**.
@@ -27,8 +27,8 @@ with your local models in the **Models** tab in the Docker Desktop Dashboard.
2727

2828
> [!IMPORTANT]
2929
>
30-
> For Docker Desktop versions 4.41 and earlier, this setting was under the
31-
> **Experimental features** tab on the **Features in development** page.
30+
> For Docker Desktop versions 4.45 and earlier, this setting was under the
31+
> **Beta features** tab.
3232
3333
### Enable DMR in Docker Engine
3434

content/manuals/enterprise/security/hardened-desktop/settings-management/configure-json-file.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,15 @@ The following tables describe all available settings in the `admin-settings.json
332332

333333
For more information, see [Networking](/manuals/desktop/features/networking.md#networking-mode-and-dns-behaviour-for-mac-and-windows).
334334

335+
### AI settings
336+
337+
| Parameter | OS | Description | Version |
338+
|:-----------------------------------------------------|----|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------|
339+
| `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. | |
340+
|         `enableInferenceTCP` | | Enable host-side TCP support. This setting requires Docker Model Runner setting to be enabled first. | |
341+
|         `enableInferenceTCPPort` | | Specifies the exposed TCP port. This setting requires Docker Model Runner setting to be enabled first. | |
342+
|         `enableInferenceCORS` | | Specifies the allowed CORS origins. Empty string to deny all,`*` to accept all, or a list of comma-separated values. This setting requires Docker Model Runner setting to be enabled first. | |
343+
335344
### Beta features
336345

337346
> [!IMPORTANT]
@@ -342,10 +351,6 @@ For more information, see [Networking](/manuals/desktop/features/networking.md#n
342351
|:-----------------------------------------------------|----|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------|
343352
| `allowBetaFeatures` | | If `value` is set to `true`, beta features are enabled. | |
344353
| `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. | |
345-
| `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. | |
346-
|         `enableInferenceTCP` | | Enable host-side TCP support. This setting requires Docker Model Runner setting to be enabled first. | |
347-
|         `enableInferenceTCPPort` | | Specifies the exposed TCP port. This setting requires Docker Model Runner setting to be enabled first. | |
348-
|         `enableInferenceCORS` | | Specifies the allowed CORS origins. Empty string to deny all,`*` to accept all, or a list of comma-separated values. This setting requires Docker Model Runner setting to be enabled first. | |
349354
| `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. | |
350355
| `allowExperimentalFeatures` | | If `value` is set to `true`, experimental features are enabled. | Docker Desktop version 4.41 and earlier |
351356

content/manuals/enterprise/security/hardened-desktop/settings-management/settings-reference.md

Lines changed: 57 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ images are permitted.
192192

193193
> [!WARNING]
194194
>
195-
> QEMU has been deprecated in Docker Desktop versions 4.44 and later. For more information, see the [blog announcement](https://www.docker.com/blog/docker-desktop-for-mac-qemu-virtualization-option-to-be-deprecated-in-90-days/)
195+
> QEMU has been deprecated in Docker Desktop versions 4.44 and later. For more information, see the [blog announcement](https://www.docker.com/blog/docker-desktop-for-mac-qemu-virtualization-option-to-be-deprecated-in-90-days/)
196196
197197
| Default value | Accepted values | Format |
198198
|---------------|-----------------|----------|
@@ -610,6 +610,62 @@ Builders settings lets you manage Buildx builder instances for advanced image-bu
610610
>
611611
> Builder definitions are structured as an array of objects, each describing a builder instance. Conflicting or unsupported configurations may cause build errors.
612612
613+
## AI settings
614+
615+
### Enable Docker Model Runner
616+
617+
| Default value | Accepted values | Format |
618+
|---------------|-----------------|----------|
619+
| `true` | `true`, `false` | Boolean |
620+
621+
- **Description:** Docker Model Runner functionality for running AI models in containers.
622+
- **OS:** {{< badge color=blue text="All" >}}
623+
- **Use case:** Run and manage AI/ML models using Docker infrastructure.
624+
- **Configure this setting with:**
625+
- Settings Management: `enableDockerAI` setting in the [`admin-settings.json` file](/manuals/enterprise/security/hardened-desktop/settings-management/configure-json-file.md)
626+
627+
#### Enable host-side TCP support
628+
629+
| Default value | Accepted values | Format |
630+
|---------------|-----------------|----------|
631+
| `false` | `true`, `false` | Boolean |
632+
633+
- **Description:** TCP connectivity for Docker Model Runner services.
634+
- **OS:** {{< badge color=blue text="All" >}}
635+
- **Use case:** Allow external applications to connect to Model Runner via TCP.
636+
- **Configure this setting with:**
637+
- Settings Management: `enableDockerAI` setting in the [`admin-settings.json` file](/manuals/enterprise/security/hardened-desktop/settings-management/configure-json-file.md)
638+
639+
> [!NOTE]
640+
>
641+
> This setting requires Docker Model Runner setting to be enabled first.
642+
643+
##### Port
644+
645+
| Default value | Accepted values | Format |
646+
|---------------|-----------------|---------|
647+
| 12434 | Integer | Integer |
648+
649+
- **Description:** Specific port used for Model Runner TCP connections.
650+
- **OS:** {{< badge color=blue text="All" >}}
651+
- **Use case:** Customize the port for Model Runner TCP connectivity.
652+
- **Configure this setting with:**
653+
- **Beta features** settings in [Docker Desktop GUI](/manuals/desktop/settings-and-maintenance/settings.md)
654+
- Settings Management: `enableInferenceTCP` setting in the [`admin-settings.json` file](/manuals/enterprise/security/hardened-desktop/settings-management/configure-json-file.md)
655+
656+
##### CORS Allowed Origins
657+
658+
| Default value | Accepted values | Format |
659+
|---------------|---------------------------------------------------------------------------------|--------|
660+
| Empty string | Empty string to deny all,`*` to accept all, or a list of comma-separated values | String |
661+
662+
- **Description:** Cross-origin resource sharing settings for Model Runner web integration.
663+
- **OS:** {{< badge color=blue text="All" >}}
664+
- **Use case:** Allow web applications to connect to Model Runner services.
665+
- **Configure this setting with:**
666+
- **Beta features** settings in [Docker Desktop GUI](/manuals/desktop/settings-and-maintenance/settings.md)
667+
- Settings Management: `enableInferenceCORS` setting in the [`admin-settings.json` file](/manuals/enterprise/security/hardened-desktop/settings-management/configure-json-file.md)
668+
613669
## Kubernetes settings
614670

615671
### Enable Kubernetes
@@ -813,62 +869,6 @@ third-party or unvetted plugins from being installed.
813869
- **Beta** settings in [Docker Desktop GUI](/manuals/desktop/settings-and-maintenance/settings.md)
814870
- Settings Management: `enableDockerAI` setting in the [`admin-settings.json` file](/manuals/enterprise/security/hardened-desktop/settings-management/configure-json-file.md)
815871

816-
### Enable Docker Model Runner
817-
818-
| Default value | Accepted values | Format |
819-
|---------------|-----------------|----------|
820-
| `true` | `true`, `false` | Boolean |
821-
822-
- **Description:** Docker Model Runner functionality for running AI models in containers.
823-
- **OS:** {{< badge color=blue text="All" >}}
824-
- **Use case:** Run and manage AI/ML models using Docker infrastructure.
825-
- **Configure this setting with:**
826-
- **Beta** settings in [Docker Desktop GUI](/manuals/desktop/settings-and-maintenance/settings.md)
827-
- Settings Management: `enableDockerAI` setting in the [`admin-settings.json` file](/manuals/enterprise/security/hardened-desktop/settings-management/configure-json-file.md)
828-
829-
#### Enable host-side TCP support
830-
831-
| Default value | Accepted values | Format |
832-
|---------------|-----------------|----------|
833-
| `false` | `true`, `false` | Boolean |
834-
835-
- **Description:** TCP connectivity for Docker Model Runner services.
836-
- **OS:** {{< badge color=blue text="All" >}}
837-
- **Use case:** Allow external applications to connect to Model Runner via TCP.
838-
- **Configure this setting with:**
839-
- **Beta** settings in [Docker Desktop GUI](/manuals/desktop/settings-and-maintenance/settings.md)
840-
- Settings Management: `enableDockerAI` setting in the [`admin-settings.json` file](/manuals/enterprise/security/hardened-desktop/settings-management/configure-json-file.md)
841-
842-
> [!NOTE]
843-
>
844-
> This setting requires Docker Model Runner setting to be enabled first.
845-
846-
##### Port
847-
848-
| Default value | Accepted values | Format |
849-
|---------------|-----------------|---------|
850-
| 12434 | Integer | Integer |
851-
852-
- **Description:** Specific port used for Model Runner TCP connections.
853-
- **OS:** {{< badge color=blue text="All" >}}
854-
- **Use case:** Customize the port for Model Runner TCP connectivity.
855-
- **Configure this setting with:**
856-
- **Beta features** settings in [Docker Desktop GUI](/manuals/desktop/settings-and-maintenance/settings.md)
857-
- Settings Management: `enableInferenceTCP` setting in the [`admin-settings.json` file](/manuals/enterprise/security/hardened-desktop/settings-management/configure-json-file.md)
858-
859-
##### CORS Allowed Origins
860-
861-
| Default value | Accepted values | Format |
862-
|---------------|---------------------------------------------------------------------------------|--------|
863-
| Empty string | Empty string to deny all,`*` to accept all, or a list of comma-separated values | String |
864-
865-
- **Description:** Cross-origin resource sharing settings for Model Runner web integration.
866-
- **OS:** {{< badge color=blue text="All" >}}
867-
- **Use case:** Allow web applications to connect to Model Runner services.
868-
- **Configure this setting with:**
869-
- **Beta features** settings in [Docker Desktop GUI](/manuals/desktop/settings-and-maintenance/settings.md)
870-
- Settings Management: `enableInferenceCORS` setting in the [`admin-settings.json` file](/manuals/enterprise/security/hardened-desktop/settings-management/configure-json-file.md)
871-
872872
### Enable Docker MCP Toolkit
873873

874874
| Default value | Accepted values | Format |

0 commit comments

Comments
 (0)