typo fixed

This commit is contained in:
theBeginner86 2021-07-10 11:15:30 +05:30
parent 6507f5b3b0
commit 3831ba50c9
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ $ curl localhost:5000
curl: (7) Failed to connect to localhost port 5000: Connection refused curl: (7) Failed to connect to localhost port 5000: 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 5000. This is expected because our container is run in isolation which includes networking. Lets stop the container and restart with port 5000 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 5000. This is expected because our container is running in isolation which includes networking. Lets stop the container and restart with port 5000 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.