is-podman

Check if the process is running inside a Podman container

MIT 3 个版本
安装
npm install is-podman
yarn add is-podman
pnpm add is-podman
bun add is-podman
README

is-podman

is-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

import isPodman = require('is-podman')

if (isPodman()) {
	console.log('Running inside a Podman container')
}

CLI Usage

$ is-podman

Exits with code 0 if inside a Podman container and 2 if not.

Testing

Both the code and CLI functionality were tested on WSL in the following environemtnts:

  1. no containerization
  2. Docker
  3. Podman

Behavior was as expected, but no formal tests have been written yet.

版本列表
1.0.1 2021-09-12
1.0.0 2021-09-12
0.1.0 2021-09-12