dockerode-utils
TypeScript icon, indicating that this package has built-in type declarations

0.0.7 • Public • Published

Dockerode Utils

travis-badge

Set of useful functions for working with dockerode.

TOC

Installation

npm

npm install dockerode-utils --save

yarn

yarn add dockerode-utils

API

pullImageAsync(dockerode, imageName, onProgress?)

pullImageAsync(dockerodeDockerode, imageNamestring, onProgress?: (output: string) => void)void

Will pull docker image, you can wait for finish or track a progress. If you forget to specify :tag, it'll download :latest

/**
 * Example how to pull alpine:latest image from dockerhub
 */
import * as Dockerode from 'dockerode';
import { pullImageAsync } from 'dockerode-utils';
 
const dockerode = new Dockerode();
await pullImageAsync(dockerode, 'alpine:latest');

execCommand(container, cmd)

execCommand(containerDockerode.Container, cmdstring[])string[]

Execute shell command in container and returns output as string[].

/**
 * Print list of env from docker container
 */
import * as Dockerode from 'dockerode';
import { execCommand } from 'dockerode-utils';
 
// first, we need to create a container
const dockerode = new Dockerode();
const alpineContainer = await dockerode.run('alpine', [], {}, null);
 
const envList = execCommand(alpineContainer, ['env']);
console.log(envList);
 
// command with argument
const envList2 = execCommand(alpineContainer, ['env', '--help']);
console.log(envList2);

waitForOutput(container, predicate, timeout = 15000)

waitForOutput(containerDockerode.Container, predicate: (output: string) => boolean, timeoutnumber = 15000)

Wait for specific output from container. Useful, when you're working with container, in which is running daemon and you have to wait for specific output/line to appears in container.

/**
 * Example with waiting for specific output.
 * Here, we're waiting for 'InnoDB: 5.7.18 started' to appears in mysql container
 * only after that, we know that mysql container is fully initialized and we can
 * continue executing commands
 */
 import * as Dockerode from 'dockerode';
 import { waitForOutput } from 'dockerode-utils';
 
const dockerode = new Dockerode();
const mysqlContainer = await dockerode.run('mysql:5.7.18', [], {}, null);
 
await waitForOutput(mysqlContainer, (line) => line === 'InnoDB: 5.7.18 started');
console.log('MySql db started');

imageExists(dockerode, ...imageNames)

imageExists(dockerodeDockerode, ...imageNamesstring | string[])boolean

Check if images with imageNames exist. You can check more than one image at once, like imageExists(dockerode, ['mongo', 'mysql']) or only one imageExists(dockerode, 'mongo'). In case, you won't define :tag it'll check if any image with imageName prefix exists.

Contribution

Feel free to contribute with useful function that you're using daily and it can be helpful for others.

Readme

Keywords

Package Sidebar

Install

npm i dockerode-utils

Weekly Downloads

1,791

Version

0.0.7

License

ISC

Last publish

Collaborators

  • jurajkocan
  • dderevjanik