This is a basic project to understand docker workflow with nodejs
I made this repository very simple and clear. This repository will help you start understanding docker most quickly.
-
Clone this repo in your local system
-
Download Docker desktop if not supported in your system follow some YT tutorials
-
Run create an image using dockerfile(already exists)
-
docker build -t docker-demo . (this dot is important to build the image)
-
docker run image_name or id
-
It'll be up and running
-
Learn the basics of docker before jumping to this practical tutorial.