Check if the process is running inside a Podman container
npm install is-podmanis-podman is an NPM module that checks whether a process is running inside a Podman container. This module is intended to work similarly to sindresorhus' is-docker module.
Install
`
$ npm install is-podman
`
Code Usage
`js
import isPodman = require('is-podman')
if (isPodman()) {
console.log('Running inside a Podman container')
}
`
CLI Usage
`
$ is-podman
``