4
0
Fork 0
mirror of https://github.com/Azure/setup-helm.git synced 2025-11-08 13:36:56 +00:00
setup-helm/node_modules/is-docker/index.d.ts

15 lines
254 B
TypeScript

/**
Check if the process is running inside a Docker container.
@example
```
import isDocker = require('is-docker');
if (isDocker()) {
console.log('Running inside a Docker container');
}
```
*/
declare function isDocker(): boolean;
export = isDocker;