NAME

Podman - Library of bindings to use the RESTful API of https://podman.io.

SYNOPSIS

use Podman::Client;
use Podman::Images;
use Podman::System;

my $Client = Podman::Client->new( ConnectionURI => 'http+unix:///run/user/1000/podman/podman.sock' );

my $System = Podman::System->new( Client => $Client );
my $Version = $System->Version();
printf "Release: %s\n", $Version->{'Version'};
printf "API: %s\n",     $Version->{'APIVersion'};

for my $Image (@{Podman::Images->List()}) {
    printf "%s\n", $Image->Name;
}

DESCRIPTION

Podman is a library of bindings to use the RESTful API of Podman. It is currently under development and contributors are welcome!

AUTHORS

Tobias Schäfer, <tschaefer@blackox.org>

COPYRIGHT AND LICENSE

Copyright (C) 2022-2022, Tobias Schäfer.

This program is free software, you can redistribute it and/or modify it under the terms of the Artistic License version 2.0.

SEE ALSO

https://github.com/tschaefer/podman-perl, https://docs.podman.io/en/latest/_static/api.html