Skip to content

danielvdspuy/node-webpack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status Docker build status

node-webpack

Usage

Watch another container’s app folder using docker-compose and a shared volume

Example docker-compose.yml

version: '2'

services:

  nginx:
    image: my-server-image
    ports:
      - "80:80"
    volumes:
      - ./path/to/host/app:/var/www
      - app-volume:/var/www

  webpack:
    image: danielvdspuy/node-webpack:latest
    ports:
      - "35729:35729"
    volumes:
      - app-volume:/usr/src/app/

volumes:
  app-volume:

About

Webpack watcher for basic JS (ES2015), HTML & SASS projects

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors