Merge pull request #13179 from theBeginner86/typos_in_language_file

Typos Fixed in the run-container.md files of language folder
This commit is contained in:
Usha Mandya 2021-07-21 11:35:20 +01:00 committed by GitHub
commit 56ab91a3d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ $ curl http://localhost:8080/
curl: (7) Failed to connect to localhost port 8080: Connection refused curl: (7) Failed to connect to localhost port 8080: Connection refused
``` ```
Our curl command failed because the connection to our server was refused. Meaning that we were not able to connect to localhost on port 8080. This is expected because our container is run in isolation which includes networking. Lets stop the container and restart with port 8080 published on our local network. Our curl command failed because the connection to our server was refused. Meaning that we were not able to connect to localhost on port 8080. This is expected because our container is running in isolation which includes networking. Lets stop the container and restart with port 8080 published on our local network.
To stop the container, press ctrl-c. This will return you to the terminal prompt. To stop the container, press ctrl-c. This will return you to the terminal prompt.

View File

@ -33,7 +33,7 @@ $ curl --request GET \
curl: (7) Failed to connect to localhost port 8080: Connection refused curl: (7) Failed to connect to localhost port 8080: Connection refused
``` ```
As you can see, our `curl` command failed because the connection to our server was refused. This means, we were not able to connect to the localhost on port 8080. This is expected because our container is run in isolation which includes networking. Lets stop the container and restart with port 8080 published on our local network. As you can see, our `curl` command failed because the connection to our server was refused. This means, we were not able to connect to the localhost on port 8080. This is expected because our container is running in isolation which includes networking. Lets stop the container and restart with port 8080 published on our local network.
To stop the container, press `ctrl-c`. This will return you to the terminal prompt. To stop the container, press `ctrl-c`. This will return you to the terminal prompt.

View File

@ -38,7 +38,7 @@ $ curl --request POST \
curl: (7) Failed to connect to localhost port 8000: Connection refused curl: (7) Failed to connect to localhost port 8000: Connection refused
``` ```
Our curl command failed because the connection to our server was refused. Meaning that we were not able to connect to localhost on port 8000. This is expected because our container is run in isolation which includes networking. Lets stop the container and restart with port 8000 published on our local network. Our curl command failed because the connection to our server was refused. Meaning that we were not able to connect to localhost on port 8000. This is expected because our container is running in isolation which includes networking. Lets stop the container and restart with port 8000 published on our local network.
To stop the container, press ctrl-c. This will return you to the terminal prompt. To stop the container, press ctrl-c. This will return you to the terminal prompt.