Difference between revisions of "Podman"
From John Freier
(Created page with "'''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...") |
|||
Line 6: | Line 6: | ||
'''Pull an image''' | '''Pull an image''' | ||
− | podman pull docker.io/library/httpd | + | podman pull docker.io/library/httpd |
'''Run an image''' | '''Run an image''' | ||
− | podman run -dt -p 8080:80/tcp docker.io/library/httpd | + | podman run -dt -p 8080:80/tcp docker.io/library/httpd |
Revision as of 09:58, 6 April 2022
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