docker-inspector
v2.0.0
Published
Inspect one or all docker containers on one or more hosts
Readme
docker inspector
Inspect one or all docker containers on one or more hosts.
Install
npm install --save docker-inspectorUse
var inspector = require('docker-inspector')({
hosts : [{
host : <ip>,
port : <port>
}]
})
inspector.inspect(function(err, containers) {}) // => Inspect all
inspector.inspect(function(err, containers) {},<id>) // => Inspect idOptions
hosts // List of hosts to query (required -> at least one)
all // Return all or only running containers (default false -> only running)
limit // Max number of containers (default 0 -> no limit)Changelog
2.0.0
- Removed
requestrequrement
1.1.0
- Added support for option all
- Added support for option limit
1.0.1
- Fixed missing Object.assign for "old" environments
1.0.0
- Initial realase :tada:
enjoy
