Skip to content

Commit f18151f

Browse files
DMR: plugin install (#22664)
<!--Delete sections as needed --> ## Description Add DMR Docker Engine plugin install cmd. ## Related issues or tickets <!-- Related issues, pull requests, or Jira tickets --> ## Reviews <!-- Notes for reviewers here --> <!-- List applicable reviews (optionally @tag reviewers) --> - [X] Technical review - [ ] Editorial review - [ ] Product review --------- Co-authored-by: Jacob Howard <[email protected]>
1 parent 4678e93 commit f18151f

File tree

4 files changed

+39
-4
lines changed

4 files changed

+39
-4
lines changed

_vale/Docker/Acronyms.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ exceptions:
3838
- DCT
3939
- DEBUG
4040
- DHCP
41+
- DMR
4142
- DNS
4243
- DOM
4344
- DPI
@@ -85,8 +86,8 @@ exceptions:
8586
- LTS
8687
- MAC
8788
- MATE
88-
- MCP
8989
- mcp
90+
- MCP
9091
- MDM
9192
- MDN
9293
- MSI
@@ -105,8 +106,8 @@ exceptions:
105106
- PATH
106107
- PDF
107108
- PEM
108-
- PID
109109
- PHP
110+
- PID
110111
- POSIX
111112
- POST
112113
- QA

content/manuals/ai/model-runner.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ params:
88
group: AI
99
weight: 20
1010
description: Learn how to use Docker Model Runner to manage and run AI models.
11-
keywords: Docker, ai, model runner, docker deskotp, llm
11+
keywords: Docker, ai, model runner, docker desktop, docker engine, llm
1212
aliases:
1313
- /desktop/features/model-runner/
1414
- /ai/model-runner/
@@ -45,6 +45,37 @@ Models are pulled from Docker Hub the first time they're used and stored locally
4545

4646
You can now use the `docker model` command in the CLI and view and interact with your local models in the **Models** tab in the Docker Desktop Dashboard.
4747

48+
### Enable DMR in Docker Engine
49+
50+
1. Ensure you have installed [Docker Engine](/engine/install/).
51+
2. DMR is available as a package. To install it, run:
52+
53+
{{< tabs >}}
54+
{{< tab name="Ubuntu/Debian">}}
55+
56+
```console
57+
$ sudo apt-get update
58+
$ sudo apt-get install docker-model-plugin
59+
```
60+
61+
{{< /tab >}}
62+
{{< tab name="RPM-base distributions">}}
63+
64+
```console
65+
$ sudo dnf update
66+
$ sudo dnf install docker-model-plugin
67+
```
68+
69+
{{< /tab >}}
70+
{{< /tabs >}}
71+
72+
3. Test the installation:
73+
74+
```console
75+
$ docker model version
76+
$ docker model run ai/smollm2
77+
```
78+
4879
## Integrate the Docker Model Runner into your software development lifecycle
4980

5081
You can now start building your Generative AI application powered by the Docker Model Runner.

data/summary.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Docker GitHub Copilot:
152152
availability: Early Access
153153
Docker Model Runner:
154154
availability: Beta
155-
requires: Docker Desktop 4.40 and later
155+
requires: Docker Engine or Docker Desktop (Windows) 4.41+ or Docker Desktop (MacOS) 4.40+
156156
for: Docker Desktop for Mac with Apple Silicon or Windows with NVIDIA GPUs
157157
Docker Projects:
158158
availability: Beta

hugo_stats.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@
9393
"RHEL-8",
9494
"RHEL-9",
9595
"RHEL-CentOS-or-Fedora",
96+
"RPM-base-distributions",
9697
"Raw",
9798
"React",
9899
"Regular-install",
@@ -106,6 +107,7 @@
106107
"Specific-version",
107108
"Svelte",
108109
"Ubuntu",
110+
"Ubuntu/Debian",
109111
"Unix-pipe",
110112
"Updated-Dockerfile",
111113
"Use-Docker-Init",
@@ -114,6 +116,7 @@
114116
"Using-the-GUI",
115117
"Using-the-MCP-Toolkit-Recommended",
116118
"VS-Code",
119+
"Via-Docker-Desktop-Recommended",
117120
"Vue",
118121
"WSL-2-backend-Arm-Early-Access",
119122
"WSL-2-backend-x86_64",

0 commit comments

Comments
 (0)