Difference between revisions of "Podman"
From John Freier
Line 23: | Line 23: | ||
'''Remove Container''' | '''Remove Container''' | ||
podman rm ff22b3bfecc1 | podman rm ff22b3bfecc1 | ||
+ | |||
+ | '''Load an Image''' | ||
+ | podman load oci-archive:cs-oci.tar:latest |
Revision as of 10:20, 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
View Logs
podman logs ff22b3bfecc1
Stop the latest container
podman stop ff22b3bfecc1
List all containers
podman ps -a
Remove Container
podman rm ff22b3bfecc1
Load an Image
podman load oci-archive:cs-oci.tar:latest