sindresorhus / is-docker

Check if the process is running inside a Docker container

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

Related

About

Check if the process is running inside a Docker container

License:MIT License


Languages

Language:JavaScript 95.3%Language:TypeScript 4.7%