Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sindresorhus/is-inside-container
Check if the process is running inside a container (Docker/Podman)
https://github.com/sindresorhus/is-inside-container
Last synced: about 1 month ago
JSON representation
Check if the process is running inside a container (Docker/Podman)
- Host: GitHub
- URL: https://github.com/sindresorhus/is-inside-container
- Owner: sindresorhus
- License: mit
- Created: 2023-02-15T06:46:37.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-27T18:36:38.000Z (about 1 year ago)
- Last Synced: 2024-04-14T09:52:38.521Z (7 months ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 68
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
- Security: .github/security.md
Awesome Lists containing this project
- awesome - sindresorhus/is-inside-container - Check if the process is running inside a container (Docker/Podman) (others)
README
# is-inside-container
> Check if the process is running inside a container
## Install
```sh
npm install is-inside-container
```## Usage
```js
import isInsideContainer from 'is-inside-container';if (isInsideContainer()) {
console.log('Running inside a container');
}
```## CLI
```sh
is-inside-container
```Exits with code 0 if inside a container and 2 if not.
## Supported containers
- Docker
- Podman## Related
- [is-docker](https://github.com/sindresorhus/is-docker) - Check if the process is running inside a Docker container
- [is-in-ci](https://github.com/sindresorhus/is-in-ci) - Check if the process is running in a Continuous Integration (CI) environment