astro-ghostcms/.pnpm-store/v3/files/ac/4e632f7b1b04215a4573a404668...

14 lines
235 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
/**
Check if the process is running inside a Docker container.
@example
```
import isDocker from 'is-docker';
if (isDocker()) {
console.log('Running inside a Docker container');
}
```
*/
export default function isDocker(): boolean;