Gulp + docker.js, task integration

gulp

Solution

I ended-up just using the command-line api via `gulp-shell`:

var shell = require('gulp-shell');

gulp.task('docs', shell.task([
  'docker -o build/docs -i dev/js -n'
]));

Problem

I'm new to the node ecosystem, has anyone tried to integrate docker.js as a Gulp task? EDIT `gulp-shell` does the job ``` var gulp = require('gulp'); var shell = require('gulp-shell'); gulp.task('docs', shell.task([ 'docker -i src/js -o docs -c manni -s yes -u -n --extras fileSearch,goToLine' ])); ```

Original source