Giter Site home page Giter Site logo

docker-node's Introduction

docker-node

Docker with node, npm, gulp, grunt, bower and create-react-native-app

  • node:alpine
  • node:8-alpine
  • node:7-alpine
  • node:6-alpine
  • node:5-alpine
  • node:4-alpine

https://hub.docker.com/_/node/

Working with the container

Docker Run

If you run the node image using docker run you can use the -e flag to override NPM_CONFIG_LOGLEVEL.

# Create container
$ docker build -t rrrj/node-8alpine github.com/robertov82008/docker-node.git

# Run commands
$ docker run \
    --rm \
    -e NPM_CONFIG_LOGLEVEL=warn \
    -e NODE_ENV=production \
    -v $PWD:/usr/src/app \
    -w /usr/src/app \
    --name node-8alpine \
    rrrj/node-8alpine \
    commands ...

# Open terminal
$ docker run -it rrrj/node-8alpine bash

NPM run

If you are running npm commands you can use --loglevel to control the verbosity of the output.

$ docker run \
    --rm \
    -e NODE_ENV=production \
    -v $PWD:/usr/src/app \
    -w /usr/src/app \
    --name node-8alpine \
    rrrj/node-8alpine \
    npm --loglevel=warn ...

Run a single Node.js script

For many simple, single file projects, you may find it inconvenient to write a complete Dockerfile. In such cases, you can run a Node.js script by using the Node.js Docker image directly:

$ docker run \
    --rm \
    -e NPM_CONFIG_LOGLEVEL=warn \
    -e NODE_ENV=production \
    -v $PWD:/usr/src/app \
    -w /usr/src/app \
    --name node-8alpine \
    rrrj/node-8alpine \
    node your-daemon-or-script.js

Working with the Compose

Run Commands

$ git clone https://github.com/robertov82008/docker-node.git && cd docker-node
$ docker-compose up
$ docker-compose run docker-node ...

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.