Files
herolib/lib/installers/virt/podman/readme.md
Mahmoud Emad 624639f87e refactor: simplify podman installer
- Simplify the Podman installer code.
- Remove unnecessary functions and improve code structure.
- Update the installer to support more platforms.
- Improve error handling and logging.
- Update Podman version to 4.9.3.
2025-01-06 12:16:29 +02:00

612 B

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()!

if podman.installed() {
	podman.destroy()!
} else {
	podman.install()!
}