From 0ae9d4cea735b6f73b8aa223325e7d8385ff70e7 Mon Sep 17 00:00:00 2001 From: Jeffrey Swan <61218880+plan-do-break-fix@users.noreply.github.com> Date: Mon, 31 May 2021 03:08:29 -0500 Subject: [PATCH] fix(docs): corrects typo in project documentation. (#137) * fix(docs): corrects typo in project documentation. Signed-off-by: Jeffrey Swan --- react-express-mongodb/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-express-mongodb/README.md b/react-express-mongodb/README.md index 247c365..5c74991 100644 --- a/react-express-mongodb/README.md +++ b/react-express-mongodb/README.md @@ -109,7 +109,7 @@ We make image of app from our `DockeFile`, explanation below. __Explanation of service server__ - Defining a **nodejs** service as __server__. -- We named our **node server** container service as **server**. Assigning a name to the containers makes it easier to read when there are lot of containers on a machine, it can aslo avoid randomly generated container names. (Although in this case, __container_name__ is also __server__, this is merely personal preference, the name of the service and container do not have to be the same.) +- We named our **node server** container service as **server**. Assigning a name to the containers makes it easier to read when there are lot of containers on a machine, it can also avoid randomly generated container names. (Although in this case, __container_name__ is also __server__, this is merely personal preference, the name of the service and container do not have to be the same.) - Docker container starts automatically if its fails. - Building the __server__ image using the Dockerfile from the current directory and passing an argument to the backend(server) `DockerFile`.