sr-bh / gsapp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Quickstart - Build your own Docker image#

Build the Docker image using the following command

$ docker build -t nodejs-express:<tag> .

Run the Docker container using the command below.

$ docker run -d -p 8080:8080 nodejs-express:<tag>

Quickstart - git based pipeline

Follow the steps mentioned below for git based pipeline

  1. Ensure that you have a git project

  2. Edit app/src/server.js

  3. Commit your changes

    $ git add .
    $ git commit -m "message"
  4. Push the changes to git

    $ git push <remote> master

Advanced usage

Port

Default Port for application is 8080 .

About


Languages

Language:HTML 39.0%Language:CSS 33.7%Language:JavaScript 27.3%