Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 286 Bytes

README.md

File metadata and controls

11 lines (6 loc) · 286 Bytes

Dockerized Node App

1. Creating the docker Image

docker build -t node-image .

2. Running the above created Image via a Docker Container

docker run -dp 3000:3000 node-image

3. Now visit localhost:3000 to view the node app