1.1.1 • Published 7 years ago

hyper.js v1.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago
var Hyper = require('hyper.js');

var hyper = new Hyper();
hyper.listImages(function (err, containers) {
	if(err){
		console.log("ERROR:", err)
		return
	}

	containers.forEach(function (containerInfo) {
		console.log(containerInfo)
		// docker.getContainer(containerInfo.Id).stop(cb);
	});
});

Resources