From 5eb68faf22a12ff8144d5ee5c062024c4f543b1a Mon Sep 17 00:00:00 2001 From: Peter Hui Date: Mon, 10 Jan 2022 22:58:58 -0800 Subject: [PATCH] paraphrased sentence to enhance readability --- get-started/03_updating_app.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get-started/03_updating_app.md b/get-started/03_updating_app.md index ca6eca49da..38af3cf3ad 100644 --- a/get-started/03_updating_app.md +++ b/get-started/03_updating_app.md @@ -42,7 +42,7 @@ docker: Error response from daemon: driver failed programming external connectiv ``` So, what happened? We aren't able to start the new container because our old container is still -running. The reason of this problem is that the container is using the host's port 3000 and +running. It is because the container is using the host's port 3000 and only one process on the machine (containers included) can listen to a specific port. To fix this, we need to remove the old container.