Skip to content

sticksnleaves/docker-node-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

Supported tags and respective Dockerfile links

What is this image?

sticksnleaves/node-project is a Docker image used for building Node based projects at Sticksnleaves.

How to use this image

This image should primarily be used as a project's base image. When used with compose this can be specified as the services image.

/usr/src/app is exposed at the images WORKDIR. All project files should be contained within this directory. Most likely you want to mount this directory as a local volume.

Example docker-compose.yml

version: "3.6"
services:
  app:
    image: sticksnleaves/node-project:latest
    volumes:
      - .:/usr/src/app