Skip to content

Latest commit

 

History

History
23 lines (11 loc) · 648 Bytes

README.md

File metadata and controls

23 lines (11 loc) · 648 Bytes

Docker-demo

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.

Steps to recreate this in your local system:

  1. Clone this repo in your local system

  2. Download Docker desktop if not supported in your system follow some YT tutorials

  3. Run create an image using dockerfile(already exists)

  4. docker build -t docker-demo . (this dot is important to build the image)

  5. docker run image_name or id

  6. It'll be up and running

  7. Learn the basics of docker before jumping to this practical tutorial.