Skip to content

lklepner/docker-node-pm2

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

This is a very simple docker image with pm2, the process manager installed.

The image will use /app folder as the place for the source code and the working directory, so you should provide your app as a volume, i.e;

-v /path/to/app/source:/app

Also, the executable (app entry js file) should be noted as the environment variable APP. The default value for APP variable is app.js.

The container exposes 80 and 443 ports so you can bind to them.

So a complete command for running a node.js application with pm2 would be;

docker run -d -e "APP=app.js" -p 3000:80 -v /path/to/app/source:/app dashersw/node-pm2

About

A pm2 application container for docker.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%