This repo helps you to get started with ExpressJs in docker Environment.
- Build Command
docker build . -t your-name/express-docker-app - Run Command
docker run -p 8000:8080 -d your-name/express-docker-app
 - List Containers
docker ps
 - Stop Command
docker stop <container_id>
 
Clone the project
  git clone https://github.com/bhimrazy/express-app-with-docker-setupGo to the project directory
  cd express-app-with-docker-setupInstall dependencies
  npm installStart the server
  npm run start
