/helloworld-node-docker

This repo features how you can simplify deployment process of your Node Apps with docker

Primary LanguageJavaScript

HelloWorld Node + Docker

This repo features how you can simplify deployment process of your Node Apps with docker

Setup

Must haves

  • Docker

Make sure docker is installed

install

    npm install

start

    npm start

Start up app on Docker

  1. Build the Image
    docker build -t hello-world-app .
  1. Start up a the container
    docker run -d -p 5000:5000 hello-world-app

Follow @johnkoder for more