WUT_Computer_Science/EGUI/lab3/front/node_modules/is-docker
2022-06-15 03:02:51 +02:00
..
cli.js chore 2022-06-15 03:02:51 +02:00
index.d.ts chore 2022-06-15 03:02:51 +02:00
index.js chore 2022-06-15 03:02:51 +02:00
license chore 2022-06-15 03:02:51 +02:00
package.json chore 2022-06-15 03:02:51 +02:00
readme.md chore 2022-06-15 03:02:51 +02: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.