liangjiahao 8f813121f8 添加查看按钮的窗口 3 yıl önce
..
cli.js fcedc92fa0 完成了基础 3 yıl önce
index.d.ts fcedc92fa0 完成了基础 3 yıl önce
index.js fcedc92fa0 完成了基础 3 yıl önce
license fcedc92fa0 完成了基础 3 yıl önce
package.json 8f813121f8 添加查看按钮的窗口 3 yıl önce
readme.md fcedc92fa0 完成了基础 3 yıl önce

readme.md

is-docker

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.