Rootless containers allow non-root users to run containers, enhancing security by isolating privileges.
podman pull nginx
- Downloads the specified image for container use.
- Create a Container:
podman create --name mycontainer nginx
- Start the Container:
podman start mycontainer