The Docker image based on tutum/hello-world concept. This is a very basic Hello World image that we use to test deployments.
To create the image dariuszporowski/hello-world, execute the following command on the src folder:
docker build -t dariuszporowski/hello-world .
You can now push your new image to the registry:
docker push dariuszporowski/hello-world
Start your image:
docker run -it --rm -p 8080:80 dariuszporowski/hello-world
Browse to http://localhost:8080 to view the web page with container hostname served by hello-world app in the running container. You should see a page similar to the following: