aimpress-chatbot/node_modules/is-docker
“SamoilenkoVadym” 195299ece0 Initial commit
2025-04-27 17:05:18 +01:00
..
cli.js Initial commit 2025-04-27 17:05:18 +01:00
index.d.ts Initial commit 2025-04-27 17:05:18 +01:00
index.js Initial commit 2025-04-27 17:05:18 +01:00
license Initial commit 2025-04-27 17:05:18 +01:00
package.json Initial commit 2025-04-27 17:05:18 +01:00
readme.md Initial commit 2025-04-27 17:05:18 +01:00

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.