Skip to content
SethBodine edited this page May 11, 2025 · 25 revisions

Podman Install

MACOS

xcode-select --install  # Required
brew install podman     # Install Podman

Other OSs

See Podman Install Documentation for other OS information

Prepare Podman

podman machine init --now --cpus=4 --memory=4096 \
       --timezone $(curl https://ipapi.co/timezone) --disk-size 50 \
       # all args are optional, but a minimum of 4GB of RAM is recommended (Prowler 3 can crash with less)
podman machine start    # only use if --now wasn't used, can be used to start the VM at a later stage after a reboot

Note: Drive Mapping is now supported and available as part of the below execution. Container storage is still NOT persistant.

Setup and run specifing ~/Documents as mounted to /output in the container

AUDIT_OUTPUT_DIR="~/Documents" curl -fsSL https://raw.githubusercontent.com/your-repo/audit-tools/main/audit-launch.sh | sh

More reading can be found https://docs.podman.io/en/latest/markdown/podman-cp.1.html regarding podman cp

Clone this wiki locally