Merge pull request #12962 from ecormaksin/patch-3

Update run-containers.md
This commit is contained in:
Usha Mandya 2021-06-11 10:49:39 +01:00 committed by GitHub
commit ac29e55843
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ To run an image inside a container, we use the `docker run` command. The `docker
$ docker run java-docker
```
After running this command, youll notice that we did not to the command prompt. This is because our application is a REST server and runs in a loop waiting for incoming requests without returning control back to the OS until we stop the container.
After running this command, youll notice that we did not return to the command prompt. This is because our application is a REST server and runs 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.