1.0.0 • Published 11 years ago
docker-kill v1.0.0
docker-kill
Kill a docker container
npm install docker-killUsage
var kill = require('docker-kill')
kill('9903a01a8629', function(err) {
console.log('container killed?', !err)
})Per default this sends SIGTERM and after 10s if the containers
has not terminated SIGKILL is sent. To change the wait time do
kill('9903a01a8629', {wait:20}, function(err) {
console.log('container killed?', !err)
})Command line usage
To install the command line tool do
npm install -g docker-kill
docker-kill --helpIn general to kill a container do
docker-kill [id]License
MIT
1.0.0
11 years ago