dockerode-process

0.7.0 • Public • Published

ChildProcess like interface for docker containers.

API

Class

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

event: exit

Emitted when docker container stops

event: close

Identical to exit

event: container

Emitted once the container is created (not running yet)

event: container start

Emitted once the container is started

dockerProc.stdout

Readable stream for stdout.

dockerProc.stderr

Readable stream for stderr.

dockerProc.id

Container id populated during run.

dockerProc.exitCode

Exit 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:

  • (Boolean) pull=true when false assume the image is cached.
dockerProc.run().then(
  function(code) {
  }
)

dockerProc.remove()

Remove the docker container.

Example Usage

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);  
})

Package Sidebar

Install

npm i dockerode-process

Weekly Downloads

42

Version

0.7.0

License

Apache2

Unpacked Size

53.3 kB

Total Files

16

Last publish

Collaborators

  • jwhitlock
  • bsieber
  • pmoore
  • taskcluster-bot
  • jonasfj