sensordb2 e64a8defe5 3.17 | hace 1 año | |
---|---|---|
.. | ||
cli.js | hace 1 año | |
index.d.ts | hace 1 año | |
index.js | hace 1 año | |
license | hace 1 año | |
package.json | hace 1 año | |
readme.md | hace 1 año |
Check if the process is running inside a Docker container
$ npm install is-docker
const isDocker = require('is-docker');
if (isDocker()) {
console.log('Running inside a Docker container');
}
$ is-docker
Exits with code 0 if inside a Docker container and 2 if not.