Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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)

Awesome Lists containing this project

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