Skip to content

Image to test Docker deployments. Has .NET Core app with a 'Hello World' page listening in port 80.

License

Notifications You must be signed in to change notification settings

sindhiya1930/docker-hello-world

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker Hello World

The Docker image based on tutum/hello-world concept. This is a very basic Hello World image that we use to test deployments.

Usage

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

Running your Hello World docker image

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:

hello-world

About

Image to test Docker deployments. Has .NET Core app with a 'Hello World' page listening in port 80.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published