This is your first Docker "Hello World!" application.
190
This is your first Docker "Hello World" application. It is an Nginx web server that listens on 80 port and when you connect to it with your browser the "Hello World!" message will appear. For more details, read this article.
The following are the instructions to run the demo.
1. docker pull sasadangelo/hello-world
2. docker run -d --name hello-world -p 80:80 sasadangelo/hello-world
Open the browser and type "localhost" in the address bar. The "Hello World!" message will appear.

The following are the instructions to cleanup your docker environment.
1. docker container rm -f hello-world
2. docker image rm -f sasadangelo/hello-world
Content type
Image
Digest
Size
83.1 MB
Last updated
over 6 years ago
docker pull sasadangelo/hello-world