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
- 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
Emitted when docker container stops
Identical to exit
Emitted once the container is created (not running yet)
Emitted once the container is started
Readable stream for stdout.
Readable stream for stderr.
Container id populated during run.
Exit code populated after run.
Pull the image from the docker index then create then start the container and return a promise for its exit status.
Options:
- (Boolean)
pull=true
when false assume the image is cached.
dockerProc.run().then(
function(code) {
}
)
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);
})