From 1ae0ec9d48c03e84fa900252c01fe9cc2d13136e Mon Sep 17 00:00:00 2001 From: Anh Tran Date: Sun, 21 Mar 2021 22:40:01 +0700 Subject: [PATCH] doc: clarify the docs --- language/python/run-containers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/language/python/run-containers.md b/language/python/run-containers.md index ed985d5b45..b3a6f70786 100644 --- a/language/python/run-containers.md +++ b/language/python/run-containers.md @@ -24,7 +24,7 @@ $ docker run python-docker After running this command, you’ll notice that you were not returned to the command prompt. This is because our application is a REST server and runs in a loop waiting for incoming requests without returning control back to the OS until we stop the container. -Let’s make a `GET` request to the server using the `curl` command. +Let’s open a new terminal then make a `GET` request to the server using the `curl` command. ```shell $ curl localhost:8000 @@ -43,7 +43,7 @@ We did not specify a port when running the flask application in the container an $ docker run --publish 8000:5000 python-docker ``` -Now, let’s rerun the curl command from above: +Now, let’s rerun the curl command from above. Remember to open a new terminal. ```shell $ curl localhost:8000