Skip to content

vinutha93bnvs/docker-hello-world

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hello World Dockerised Node.js application

Build the Docker image:

$docker build -t helloworld .

Run the Docker image:

$docker run -it helloword

Run Docker image with port binding:

docker run -it -p 8080:3000 -t helloworld

Build + run the Docker image with port binding:

docker build -t helloworld . && docker run -p 8080:3000 -it -t helloworld

Once running app is available on : http://localhost:8080/

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published