UNPKG

node-compose

Version:

start node-processes as with docker-compose

15 lines (9 loc) 207 B
'use strict'; module.exports = function(vorpal, options) { const app = options.app; vorpal .command('ps', 'List running images') .action(function(args) { return app.commands.ps(args); }); };