From f1242413b7475382b587a5db2c79479586d85c5e Mon Sep 17 00:00:00 2001 From: Kenneth Caple Date: Sat, 23 Oct 2021 14:10:04 -0700 Subject: [PATCH] Update run-containers.md --- language/nodejs/run-containers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/nodejs/run-containers.md b/language/nodejs/run-containers.md index d4bf853907..23ae46c3bd 100644 --- a/language/nodejs/run-containers.md +++ b/language/nodejs/run-containers.md @@ -24,7 +24,7 @@ To run an image inside of a container, we use the `docker run` command. The `doc $ docker run node-docker ``` -When you run this command, you’ll notice that you were not returned to the command prompt. This is because our application is a REST server and will run in a loop waiting for incoming requests without return control back to the OS until we stop the container. +When you run this command, you’ll notice that you were not returned to the command prompt. This is because our application is a REST server and will run in a loop waiting for incoming requests without returning control back to the OS until we stop the container. Let’s open a new terminal then make a GET request to the server using the curl command.