Apparently running a docker in the cmd.exe
requires a bunch of environment variables set up. Just spawning a spawnSync
from child_process
won't do in most cases. Thus the birth of this lib.
Besides, command execution is wrapped in Promises, and there are some helper methods one can use. See API.
What if you have multiple commands that you always run to set up your environment or to deploy a project to AWS? This is where this project comes in handy.
Example to deply an app to AWS
var gulp = require('gulp');
var dockerCmdJs = require('docker-cmd-js');
var cmd = new dockerCmdJs.Cmd();
gulp.task('deploy', (done) => {
cmd.debug().run('aws ecr get-login --region us-east-1', true)
.then((authCmd)=> cmd.run(authCmd))
.then(()=> cmd.run('docker build -t myapp .'))
.then(()=> cmd.run('docker tag myapp:latest someawsid.dkr.ecr.us-east-1.amazonaws.com/myapp:latest'))
.then(()=> cmd.run('docker push someawsid.dkr.ecr.us-east-1.amazonaws.com/myapp:latest'))
.catch((err) => { console.log(err); })
.finally(() => { done() });
});
Instantiates object that'll run commands. Optionally you can set machine name against which commands will run.
Sets verbose output.
Takes any command as string. Parameter noNewLines
set to true removes cariage returns from the output.
Returns Promise.
Takes any command as string.
Returns the following object:
interface RunResult {
stdOut: string;
stdErr: string;
}
Whenever a command run that returns a tabular data (ex: docker images
), you can pass the result to this method, which will convert data into JSON.
Example:
cmd.run('docker images').then(
(res)=> {
let json = cmd.resToJSON(res);
},
(err)=> { console.log(err); }
);
Starts machine. If it does not exist, it'll be created. Resolves even if machine is already started.
Returns machine's IP address.
Returns machine's status.
Builds desired image. You can provide object with the following options:
export interface IBuildImageOpts {
/*
* set path or url to Dockerfile. If not specified assumes current directory.
*/
pathOrUrl?: string;
/*
* if not set to true and image already exists, it'll prompt you with options
* letting you chose how you want to build the image
*/
buildAndReplace?: boolean;
}
Removes desired image
Checks for dangling images. If found, prompts with question whether to remove them or not.
Starts container from desired image. You can provide object with the following options. See docker docs for options' description:
export interface IStartDockerOpts {
name?: string;
publish?: string[];
volume?: string;
volumesFrom?: string[];
link?: string[];
env?: string[];
}
Returns container's status.
Thanks to Matt Klein, who started out coding this lib.