zheng c04a112d75 webpack 22 часов назад
..
cli.js c04a112d75 webpack 22 часов назад
index.d.ts c04a112d75 webpack 22 часов назад
index.js c04a112d75 webpack 22 часов назад
license c04a112d75 webpack 22 часов назад
package.json c04a112d75 webpack 22 часов назад
readme.md c04a112d75 webpack 22 часов назад

readme.md

is-docker

Check if the process is running inside a Docker container

Install

$ npm install is-docker

Usage

import isDocker from 'is-docker';

if (isDocker()) {
	console.log('Running inside a Docker container');
}

CLI

$ is-docker

Exits with code 0 if inside a Docker container and 2 if not.