yingzi da3948d03d 修改 há 1 ano atrás
..
cli.js a6e36702ec 2023-3-1 há 2 anos atrás
index.d.ts a6e36702ec 2023-3-1 há 2 anos atrás
index.js a6e36702ec 2023-3-1 há 2 anos atrás
license a6e36702ec 2023-3-1 há 2 anos atrás
package.json da3948d03d 修改 há 1 ano atrás
readme.md da3948d03d 修改 há 1 ano atrás

readme.md

is-docker Build Status

Check if the process is running inside a Docker container

Install

$ npm install is-docker

Usage

const isDocker = require('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.