PromoCursed/node_modules/is-docker
2024-08-20 23:25:37 +04:00
..
cli.js Первый коммит 2024-08-20 23:25:37 +04:00
index.d.ts Первый коммит 2024-08-20 23:25:37 +04:00
index.js Первый коммит 2024-08-20 23:25:37 +04:00
license Первый коммит 2024-08-20 23:25:37 +04:00
package.json Первый коммит 2024-08-20 23:25:37 +04:00
readme.md Первый коммит 2024-08-20 23:25:37 +04:00

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.