UNPKG

node-compose

Version:

start node-processes as with docker-compose

16 lines (10 loc) 215 B
'use strict'; module.exports = function(args) { let image; try { image = this.getImageByName(args.image); } catch(e) { return this.log(['error'], e.message); } return image.startScript(args.script); }