Merge pull request #13727 from califken/patch-2

Update run-containers.md
This commit is contained in:
Sebastiaan van Stijn 2021-11-11 15:02:18 +01:00 committed by GitHub
commit a045d5d100
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ To run an image inside of a container, we use the `docker run` command. The `doc
$ docker run node-docker
```
When you run this command, youll notice that you were not returned to the command prompt. This is because our application is a REST server and will run in a loop waiting for incoming requests without return control back to the OS until we stop the container.
When you run this command, youll notice that you were not returned to the command prompt. This is because our application is a REST server and will run in a loop waiting for incoming requests without returning control back to the OS until we stop the container.
Lets open a new terminal then make a GET request to the server using the curl command.