Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dockerode-process

Package Overview
Dependencies
Maintainers
6
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dockerode-process - npm Package Compare versions

Comparing version 0.6.1 to 0.7.0

.nvmrc

1

docker_process.js

@@ -5,3 +5,2 @@ var EventEmitter = require('events').EventEmitter;

var utils = require('./utils');
var Promise = require('promise');

@@ -8,0 +7,0 @@ function connectStreams(dockerProc, container, stream) {

{
"name": "dockerode-process",
"version": "0.6.1",
"version": "0.7.0",
"description": "ChildProcess like interface for docker containers",

@@ -11,3 +11,3 @@ "main": "docker_process.js",

"type": "git",
"url": "git://github.com/lightsofapollo/dockerode-process.git"
"url": "git://github.com/taskcluster/dockerode-process.git"
},

@@ -24,14 +24,13 @@ "keywords": [

"bugs": {
"url": "https://github.com/lightsofapollo/dockerode-process/issues"
"url": "https://github.com/taskcluster/dockerode-process/issues"
},
"homepage": "https://github.com/lightsofapollo/dockerode-process",
"homepage": "https://github.com/taskcluster/dockerode-process",
"dependencies": {
"dockerode-promise": "0.1.0",
"promise": "~7.0.3",
"debug": "0.8.0"
"debug": "2.6.9"
},
"devDependencies": {
"mocha": "1.18.2",
"dockerode-options": "~0.1.0"
"dockerode": "^3.2.1",
"dockerode-options": "~0.1.0",
"mocha": "1.18.2"
}
}

@@ -13,9 +13,9 @@

var dockerProc = new DockerProcess(
// dockerode-promise instance
// dockerode instance
docker,
{
// http://docs.docker.io/en/latest/api/docker_remote_api_v1.8/#create-a-container
// For POST /containers/create
create: {},
// http://docs.docker.io/en/latest/api/docker_remote_api_v1.8/#start-a-container
// For POST /containers/(id)/start
start: {}

@@ -26,2 +26,7 @@ }

See
* https://docs.docker.com/engine/reference/api/docker_remote_api_v1.20/#create-a-container
* https://docs.docker.com/engine/reference/api/docker_remote_api_v1.20/#start-a-container
### event: `exit`

@@ -82,3 +87,3 @@

var dockerProc = new DockerProcess(
// dockerode-promise instance
// dockerode instance
docker,

@@ -85,0 +90,0 @@ {

var dockerOpts = require('dockerode-options'),
Docker = require('dockerode-promise');
Docker = require('dockerode');

@@ -4,0 +4,0 @@ module.exports = function docker(options) {

suite('docker_utils', function() {
var Promise = require('promise');
var docker = require('./docker')();

@@ -4,0 +3,0 @@ var subject = require('../utils');

@@ -1,2 +0,1 @@

var Promise = require('promise');
var stream = require('stream');

@@ -3,0 +2,0 @@ var debug = require('debug')('docker-process:utils');

Sorry, the diff of this file is not supported yet

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