Socket
Socket
Sign inDemoInstall

docker-activator

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

docker-activator - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

8

containers.js

@@ -30,3 +30,9 @@ var Docker = require('dockerode'),

function getRunningContainers(callback) {
callback(null, []);
docker.listContainers(function (err, containers) {
var list = [];
for (var i=0; i<containers.length; i++) {
list.push(containers[i].Names[0].substring(1));
}
callback(null, list);
});
}

@@ -33,0 +39,0 @@

2

package.json

@@ -7,3 +7,3 @@ {

},
"version": "0.0.3",
"version": "0.0.4",
"dependencies": {

@@ -10,0 +10,0 @@ "dockerode": "*"

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc