Files
herolib/lib/installers/virt/podman
2025-08-29 09:47:54 +02:00
..
...
2025-08-29 09:47:54 +02:00
...
2025-02-09 08:55:01 +01:00
...
2025-08-25 06:09:51 +02:00

Podman

Podman is a lightweight container manager that allows users to manage and run containers without requiring a daemon, providing flexibility and security for containerized applications.

Using Podman in VLang

The following example demonstrates how to use the Podman installer in a VLang script. It checks if Podman is installed, removes it if found, or installs it if not.

Example Code (VLang)

import freeflowuniverse.herolib.installers.virt.podman as podman_installer

mut podman := podman_installer.get()!

// To install
podman.install()!

// To remove
podman.destroy()!