podman

podman 5.8.7

Program for managing pods, containers and container images

<rendered-html><p>Podman (the POD MANager) is a tool for managing containers and images, volumes mounted into those containers, and pods made from groups of containers. Podman runs containers on Linux, but can also be used on Mac and Windows systems using a Podman-managed virtual machine. Podman is based on libpod, a library for container lifecycle management that is also contained in this repository. The libpod library provides APIs for managing containers, pods, container images, and volumes.</p> <p>To install on NixOS, please use the option <code>virtualisation.podman.enable = true</code>.</p> </rendered-html>

https://podman.io/
Apache License 2.0
main program: podmanprograms: podmansh, podman
Platforms (45)
loongarch64-linuxmips-linuxaarch64-linuxi686-openbsdpowerpc64-linuxarmv7a-linuxpowerpc-netbsdx86_64-solaris
View source on NixOS/nixpkgs →

Install

Copy into your configuration

NixOS (configuration.nix)
environment.systemPackages = with pkgs; [
  podman
];
Ad-hoc shell
nix-shell -p podman
Flake (nix run)
nix run nixpkgs#podman