
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
dockerode-process
Advanced tools
ChildProcess like interface for docker containers.
Root module exported from require('docker-process').
var DockerProcess = require('docker');
var dockerProc = new DockerProcess(
// dockerode instance
docker,
{
// For POST /containers/create
create: {},
// For POST /containers/(id)/start
start: {}
}
);
See
exitEmitted when docker container stops
closeIdentical to exit
containerEmitted once the container is created (not running yet)
container startEmitted once the container is started
dockerProc.stdoutReadable stream for stdout.
dockerProc.stderrReadable stream for stderr.
dockerProc.idContainer id populated during run.
dockerProc.exitCodeExit code populated after run.
dockerProc.run([options])Pull the image from the docker index then create then start the container and return a promise for its exit status.
Options:
pull=true when false assume the image is cached.dockerProc.run().then(
function(code) {
}
)
dockerProc.remove()Remove the docker container.
var DockerProcess = require('dockerode-process');
var dockerProc = new DockerProcess(
// dockerode instance
docker,
{
// http://docs.docker.io/en/latest/api/docker_remote_api_v1.8/#create-a-container
create: {
Image: 'ubuntu',
Cmd: ['/bin/bash', '-c', 'echo "xfoo"']
},
// http://docs.docker.io/en/latest/api/docker_remote_api_v1.8/#start-a-container
start: {}
}
);
dockerProc.run();
// a reference to the container can be obtained by waiting for the
// container event
dockerProc.once('container', function(container) {
});
dockerProc.stdout.pipe(process.stdout);
dockerProc.once('exit', function(code) {
process.exit(code);
})
FAQs
ChildProcess like interface for docker containers
The npm package dockerode-process receives a total of 9 weekly downloads. As such, dockerode-process popularity was classified as not popular.
We found that dockerode-process demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.