This container is used to build and run projects based on NPM, Bower and Grunt.
You need to run the container with the following arguments:
- The ports you need to expose via the
-pargument. This will depend on your Gruntfile.js configuration for the task responsible of starting the server - A volume where your
Grunfile.js,package.jsonandbower.jsonreside and is root to your application code. This volume must be mounted on the container's/buildfolder via de-vargument. - The name of the grunt task that starts your server using the environment variable
TASKusing the-eargument. If no TASK is providedcontainertask will be used. The container will fail to start if the task does not exists. Be sure to start your server on hostname0.0.0.0so that the server is accessible from outside the container.
docker run -p 9000:9000 -v ~/myApp:/build -e "TASK=serve" byteflair/node
- You can also indicate the working folder via the
WORKSPACEenvironment variable.
docker run -p 9000:9000 -v ~/myApp:/drone/src -e "WORKSPACE=/drone/src" -e "TASK=serve" byteflair/node