Fix a grammar issue (#13212)

Signed-off-by: Usha Mandya <usha.mandya@docker.com>
This commit is contained in:
Usha Mandya
2021-07-21 16:16:18 +01:00
committed by GitHub
parent 425e845857
commit b0022ea68e
2 changed files with 2 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ $ curl --request GET \
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 running 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. It means that 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.