Skip to content
This repository was archived by the owner on Jun 16, 2026. It is now read-only.

Commit 74bdf97

Browse files
committed
feedback
1 parent a77c090 commit 74bdf97

5 files changed

Lines changed: 23 additions & 23 deletions

File tree

desktop/context.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ const (
9898
func (k ModelRunnerEngineKind) String() string {
9999
switch k {
100100
case ModelRunnerEngineKindMoby:
101-
return "Moby"
101+
return "Docker Engine"
102102
case ModelRunnerEngineKindMobyManual:
103-
return "Moby (Manual Install)"
103+
return "Docker Engine (Manual Install)"
104104
case ModelRunnerEngineKindDesktop:
105105
return "Docker Desktop"
106106
case ModelRunnerEngineKindCloud:

docs/reference/docker_model.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
command: docker model
22
short: Docker Model Runner
33
long: |-
4-
Use Docker Model Runner to run and interract with AI models directly from the command line.
4+
Use Docker Model Runner to run and interact with AI models directly from the command line.
55
For more information, see the [documentation](/model-runner/)
66
pname: docker
77
plink: docker.yaml

docs/reference/docker_model_run.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
command: docker model run
22
short: Run a model and interact with it using a submitted prompt or chat mode
33
long: |-
4-
When you run a model, Docker calls an Inference Server API endpoint hosted by the Model Runner through Docker Desktop. The model stays in memory until another model is requested, or until a pre-defined inactivity timeout is reached (currently 5 minutes).
4+
When you run a model, Docker calls an inference server API endpoint hosted by the Model Runner through Docker Desktop. The model stays in memory until another model is requested, or until a pre-defined inactivity timeout is reached (currently 5 minutes).
55
66
You do not have to use Docker model run before interacting with a specific model from a host process or from within a container. Model Runner transparently loads the requested model on-demand, assuming it has been pulled and is locally available.
77

docs/reference/model.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@ Docker Model Runner (EXPERIMENTAL)
55

66
### Subcommands
77

8-
| Name | Description |
9-
| :---------------------------------------------- | :--------------------------------------------------------------------- |
10-
| [`df`](model_df.md) | Show Docker Model Runner disk usage |
11-
| [`inspect`](model_inspect.md) | Display detailed information on one model |
12-
| [`install-runner`](model_install-runner.md) | Install Docker Model Runner |
13-
| [`list`](model_list.md) | List the available models that can be run with the Docker Model Runner |
14-
| [`logs`](model_logs.md) | Fetch the Docker Model Runner logs |
15-
| [`package`](model_package.md) | package a model |
16-
| [`ps`](model_ps.md) | List running models |
17-
| [`pull`](model_pull.md) | Download a model |
18-
| [`push`](model_push.md) | Upload a model |
19-
| [`rm`](model_rm.md) | Remove models downloaded from Docker Hub |
20-
| [`run`](model_run.md) | Run a model with the Docker Model Runner |
21-
| [`status`](model_status.md) | Check if the Docker Model Runner is running |
22-
| [`tag`](model_tag.md) | Tag a model |
23-
| [`uninstall-runner`](model_uninstall-runner.md) | Uninstall Docker Model Runner |
24-
| [`unload`](model_unload.md) | Unload running models |
25-
| [`version`](model_version.md) | Show the Docker Model Runner version |
8+
| Name | Description |
9+
|:------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------|
10+
| [`df`](model_df.md) | Show Docker Model Runner disk usage |
11+
| [`inspect`](model_inspect.md) | Display detailed information on one model |
12+
| [`install-runner`](model_install-runner.md) | Install Docker Model Runner (Docker Engine only) |
13+
| [`list`](model_list.md) | List the models pulled to your local environment |
14+
| [`logs`](model_logs.md) | Fetch the Docker Model Runner logs |
15+
| [`package`](model_package.md) | Package a GGUF file into a Docker model OCI artifact, with optional licenses, and pushes it to the specified registry |
16+
| [`ps`](model_ps.md) | List running models |
17+
| [`pull`](model_pull.md) | Pull a model from Docker Hub or HuggingFace to your local environment |
18+
| [`push`](model_push.md) | Push a model to Docker Hub |
19+
| [`rm`](model_rm.md) | Remove local models downloaded from Docker Hub |
20+
| [`run`](model_run.md) | Run a model and interact with it using a submitted prompt or chat mode |
21+
| [`status`](model_status.md) | Check if the Docker Model Runner is running |
22+
| [`tag`](model_tag.md) | Tag a model |
23+
| [`uninstall-runner`](model_uninstall-runner.md) | Uninstall Docker Model Runner |
24+
| [`unload`](model_unload.md) | Unload running models |
25+
| [`version`](model_version.md) | Show the Docker Model Runner version |
2626

2727

2828

docs/reference/model_run.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Run a model and interact with it using a submitted prompt or chat mode
1414

1515
## Description
1616

17-
When you run a model, Docker calls an Inference Server API endpoint hosted by the Model Runner through Docker Desktop. The model stays in memory until another model is requested, or until a pre-defined inactivity timeout is reached (currently 5 minutes).
17+
When you run a model, Docker calls an inference server API endpoint hosted by the Model Runner through Docker Desktop. The model stays in memory until another model is requested, or until a pre-defined inactivity timeout is reached (currently 5 minutes).
1818

1919
You do not have to use Docker model run before interacting with a specific model from a host process or from within a container. Model Runner transparently loads the requested model on-demand, assuming it has been pulled and is locally available.
2020

0 commit comments

Comments
 (0)