- Docker
Make sure docker is installed
npm install
npm start
- Build the Image
docker build -t hello-world-app .
- Start up a the container
docker run -d -p 5000:5000 hello-world-app
Follow @johnkoder for more
This repo features how you can simplify deployment process of your Node Apps with docker
JavaScript
Make sure docker is installed
npm install
npm start
docker build -t hello-world-app .
docker run -d -p 5000:5000 hello-world-app
Follow @johnkoder for more