Podman Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * podman")
 
Line 1: Line 1:
=Internal=
=Internal=
* [[Podman#Subjects|podman]]
* [[Podman#Subjects|podman]]
=Installation=
==Mac==
<syntaxhighlight lang='bash'>
brew install podman
</syntaxhighlight>
==Linux==
<syntaxhighlight lang='bash'>
dnf install -y podman && dnf clean all
podman --version
</syntaxhighlight>
=Version=
<syntaxhighlight lang='bash'>
podman --version
</syntaxhighlight>
=Build Container Images=
{{Internal|Build Container Images with podman|Build Container Images with podman}}

Revision as of 04:05, 4 May 2023

Internal

Installation

Mac

brew install podman

Linux

dnf install -y podman && dnf clean all
podman --version

Version

podman --version

Build Container Images

Build Container Images with podman