From b9645059676599feace66c41aa1b3cb6f7907a4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?tae0y=5B=EB=B0=95=ED=83=9C=EC=98=81=5D?= Date: Sun, 26 Oct 2025 11:13:07 +0900 Subject: [PATCH 1/4] =?UTF-8?q?Update=20docker-model-runner.md=20-=20?= =?UTF-8?q?=EA=B0=80=EC=9D=B4=EB=93=9C=20=EB=AC=B8=EC=84=9C=EC=97=90=20?= =?UTF-8?q?=ED=98=B8=EC=8A=A4=ED=8A=B8=EC=B8=A1=20=EC=9A=94=EC=B2=AD=20?= =?UTF-8?q?=EC=88=98=EC=8B=A0=20=ED=99=9C=EC=84=B1=ED=99=94=ED=95=98?= =?UTF-8?q?=EB=8A=94=20=EB=B0=A9=EB=B2=95=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/docker-model-runner.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/docker-model-runner.md b/docs/docker-model-runner.md index b3434dfd..d256cc85 100644 --- a/docs/docker-model-runner.md +++ b/docs/docker-model-runner.md @@ -18,7 +18,7 @@ This page describes how to run OpenChat Playground (OCP) with [Docker Model Runn ## Run on local machine -1. Make sure the Docker Model Runner is up and running with the following command. +1. Make sure the Docker Model Runner is up and ready to accept requests with the following command. ```bash docker model status @@ -26,6 +26,18 @@ This page describes how to run OpenChat Playground (OCP) with [Docker Model Runn It should say `Docker Model Runner is running`. + ```bash + curl http://localhost:12434 + ``` + + ```powershell + Invoke-WebRequest http://localhost:12434 + ``` + + It should say `The Service is running` + + > If it says `Connection refused`, turn on "Enable host-side TCP support" option in Docker Desktop Settings. + 1. Download the model. The default model OCP uses is [ai/smollm2](https://hub.docker.com/r/ai/smollm2). ```bash From 47fa8a5418352844d4fd8f4fbfe1b39d08ab4025 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=95=ED=83=9C=EC=98=81?= Date: Mon, 27 Oct 2025 09:03:26 +0900 Subject: [PATCH 2/4] Update docker-model-runner.md --- docs/docker-model-runner.md | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/docs/docker-model-runner.md b/docs/docker-model-runner.md index d256cc85..c1c3adaa 100644 --- a/docs/docker-model-runner.md +++ b/docs/docker-model-runner.md @@ -27,16 +27,18 @@ This page describes how to run OpenChat Playground (OCP) with [Docker Model Runn It should say `Docker Model Runner is running`. ```bash + # bash/zsh curl http://localhost:12434 ``` ```powershell + # {owershell Invoke-WebRequest http://localhost:12434 ``` It should say `The Service is running` - > If it says `Connection refused`, turn on "Enable host-side TCP support" option in Docker Desktop Settings. + > If it says `Connection refused`, turn on "Enable host-side TCP support" option in [Docker Desktop Settings](https://docs.docker.com/ai/model-runner/get-started/#docker-desktop). 1. Download the model. The default model OCP uses is [ai/smollm2](https://hub.docker.com/r/ai/smollm2). @@ -74,7 +76,7 @@ This page describes how to run OpenChat Playground (OCP) with [Docker Model Runn ## Run in local container -1. Make sure the Docker Model Runner is up and running with the following command. +1. Make sure the Docker Model Runner is up and ready to accept requests with the following command. ```bash docker model status @@ -82,6 +84,20 @@ This page describes how to run OpenChat Playground (OCP) with [Docker Model Runn It should say `Docker Model Runner is running`. + ```bash + # bash/zsh + curl http://localhost:12434 + ``` + + ```powershell + # {owershell + Invoke-WebRequest http://localhost:12434 + ``` + + It should say `The Service is running` + + > If it says `Connection refused`, turn on "Enable host-side TCP support" option in [Docker Desktop Settings](https://docs.docker.com/ai/model-runner/get-started/#docker-desktop). + 1. Download the model. The default model OCP uses is [ai/smollm2](https://hub.docker.com/r/ai/smollm2). ```bash From fbd69bf6274a9428a4e28ebe3f8cc83869f54e74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?tae0y=5B=EB=B0=95=ED=83=9C=EC=98=81=5D?= Date: Mon, 27 Oct 2025 23:04:24 +0900 Subject: [PATCH 3/4] =?UTF-8?q?Update=20docker-model-runner.md=20-=20?= =?UTF-8?q?=ED=91=9C=ED=98=84=20=EB=8B=A4=EB=93=AC=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/docker-model-runner.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docker-model-runner.md b/docs/docker-model-runner.md index c1c3adaa..640151f1 100644 --- a/docs/docker-model-runner.md +++ b/docs/docker-model-runner.md @@ -18,7 +18,7 @@ This page describes how to run OpenChat Playground (OCP) with [Docker Model Runn ## Run on local machine -1. Make sure the Docker Model Runner is up and ready to accept requests with the following command. +1. Make sure the Docker Model Runner is up and running, and ready to accept requests with the following command. ```bash docker model status @@ -76,7 +76,7 @@ This page describes how to run OpenChat Playground (OCP) with [Docker Model Runn ## Run in local container -1. Make sure the Docker Model Runner is up and ready to accept requests with the following command. +1. Make sure the Docker Model Runner is up and running, and ready to accept requests with the following command. ```bash docker model status From 1d9e2dfdea67b2f4e6ee1d900c5f768373cdb3c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?tae0y=5B=EB=B0=95=ED=83=9C=EC=98=81=5D?= Date: Fri, 31 Oct 2025 20:49:12 +0900 Subject: [PATCH 4/4] Update docker-model-runner.md - fix typo --- docs/docker-model-runner.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docker-model-runner.md b/docs/docker-model-runner.md index 640151f1..07692c08 100644 --- a/docs/docker-model-runner.md +++ b/docs/docker-model-runner.md @@ -32,7 +32,7 @@ This page describes how to run OpenChat Playground (OCP) with [Docker Model Runn ``` ```powershell - # {owershell + # Powershell Invoke-WebRequest http://localhost:12434 ``` @@ -90,7 +90,7 @@ This page describes how to run OpenChat Playground (OCP) with [Docker Model Runn ``` ```powershell - # {owershell + # Powershell Invoke-WebRequest http://localhost:12434 ```