Build Container Images with podman: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=External= * https://manpages.ubuntu.com/manpages/impish/man1/docker-build.1.html =Internal= * podman =Overview=")
 
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
=External=
=External=
* https://manpages.ubuntu.com/manpages/impish/man1/docker-build.1.html
* https://docs.podman.io/en/latest/markdown/podman-build.1.html
 
=Internal=
=Internal=
* [[Podman#Build_Container_Images|podman]]
* [[Podman_Operations#Build_Container_Images|Podman Operations]]
 
=Overview=
=Overview=
<syntaxhighlight lang='bash'>
podman image build
</syntaxhighlight>
is equivalent with:
<syntaxhighlight lang='bash'>
podman build
</syntaxhighlight>
Note that a virtual machine must be running when <code>podman build</code> is attempted.
<font color=darkkhaki>Where is the image stored locally? How does the local "docker cache" look for podman?</font>

Latest revision as of 21:52, 4 May 2023

External

Internal

Overview

podman image build

is equivalent with:

podman build

Note that a virtual machine must be running when podman build is attempted.


Where is the image stored locally? How does the local "docker cache" look for podman?