Skip to content

Instantly share code, notes, and snippets.

@mikaelvesavuori
Created December 3, 2023 15:52
Show Gist options
  • Save mikaelvesavuori/af64d54bf7478fdd4ee74f08a297c3aa to your computer and use it in GitHub Desktop.
Save mikaelvesavuori/af64d54bf7478fdd4ee74f08a297c3aa to your computer and use it in GitHub Desktop.
Podman cheatsheet for common basic commands.
# Build and tag image
podman build -t <IMAGE>:<TAG> .
# List images
podman images
# List processes
podman ps
# Kill a process
podman kill <PROCESS_ID>
# Run an image
podman run <IMAGE>
# Run an image in interactive mode
podman run <IMAGE> -i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment