peach a19a732be8 commit message | před 2 roky | |
---|---|---|
.. | ||
cli.js | před 2 roky | |
index.d.ts | před 2 roky | |
index.js | před 2 roky | |
license | před 2 roky | |
package.json | před 2 roky | |
readme.md | před 2 roky |
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.