Skip to main content

Podman containers

v0.1.6

Read-only inventory + per-container introspection plus narrow mutators (restart, stop, kill, prune). Drop-in alternative for Docker on RHEL / Fedora hosts. Rootless mode supported as long as the runner uid matches the user that owns the containers.

8 allowed by default 4 need approval by default
Pack ID
podman
Vendor
emisar
OS
linux
Actions
12
Required binaries. Install these on the host before relying on the pack — an action that calls a missing one fails at run time.
podman

Install

emisar pack install fetches this pack, re-validates it, and verifies its content hash against the --hash below — the exact bytes this page was rendered against, so a tampered copy is rejected — before copying it into the runner's packs dir. The command reloads a running daemon itself; no manual restart.

on the runner host
sudo emisar pack install podman --hash sha256:62417ba312de19b9ec69c53db6dee8d4e85a9e042d6f095e4eac18170f562781

Actions 12 total

View on GitHub
  • podman.images exec low

    podman images

    List all local images.

    View source on GitHub
  • podman.info exec low

    podman info

    Show system + storage + network info.

    View source on GitHub
  • podman.inspect exec medium

    podman inspect <id>

    Show full container details for one ID/name — state, mounts, network config, labels, and the container's env. The env commonly carries injected secrets (values passed with -e), so this is approval-gated; the runner's redaction is a pattern-bound backstop, not a guarantee. Read-only.

    View source on GitHub
  • podman.kill exec high

    podman kill <id>

    Sends SIGKILL: instant termination. In-flight requests are dropped.

    View source on GitHub
  • podman.logs exec low

    podman logs <id> --tail <N>

    Tail container logs (last N lines).

    View source on GitHub
  • podman.ps exec low

    podman ps -a

    List all containers (running + stopped).

    View source on GitHub
  • podman.restart exec high

    podman restart <id>

    Restart one container. Drops in-flight requests.

    View source on GitHub
  • podman.stats exec low

    podman stats --no-stream

    Show one-shot CPU/mem/net/io stats for all containers.

    View source on GitHub
  • podman.stop exec high

    podman stop <id>

    SIGTERM then SIGKILL after timeout.

    View source on GitHub
  • podman.system_df exec low

    podman system df

    Show disk usage by images / containers / volumes.

    View source on GitHub
  • podman.system_prune exec high

    podman system prune -f

    Removes stopped containers, dangling images, unused networks.

    View source on GitHub
  • podman.version exec low

    podman version

    Show Podman binary + API + runtime versions.

    View source on GitHub