Podman

From John Freier
Revision as of 11:00, 6 April 2022 by Jfreier (Talk | contribs)

Jump to: navigation, search

List Images

 podman images

List running images

 podman ps

Pull an image

 podman pull docker.io/library/httpd

Run an image

 podman run -dt -p 8080:80/tcp docker.io/library/httpd

View Logs

 podman logs -l

Stop the latest container

-l is for latest

  podman stop -l