Skip to content

Commit 6762d20

Browse files
committed
This environment variable should not prevent us pulling containers
We should still be able to pull when this is set Signed-off-by: Eric Curtin <eric.curtin@docker.com>
1 parent e491c85 commit 6762d20

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

cmd/cli/commands/install-runner.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,9 +191,6 @@ func runInstallOrStart(cmd *cobra.Command, opts runnerOptions, debug bool) error
191191
cmd.Println("Use `docker desktop enable model-runner` instead")
192192
return nil
193193
}
194-
} else if engineKind == types.ModelRunnerEngineKindMobyManual {
195-
cmd.Println("Standalone installation not supported with MODEL_RUNNER_HOST set")
196-
return nil
197194
}
198195

199196
port := opts.port

cmd/cli/commands/uninstall-runner.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ func runUninstallOrStop(cmd *cobra.Command, opts cleanupOptions) error {
3030
cmd.Println("Use `docker desktop disable model-runner` instead")
3131
return nil
3232
}
33-
} else if kind == types.ModelRunnerEngineKindMobyManual {
34-
cmd.Println("Standalone uninstallation not supported with MODEL_RUNNER_HOST set")
35-
return nil
3633
}
3734

3835
// Create a Docker client for the active context.

0 commit comments

Comments
 (0)