Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 452 Bytes

chapter-6-rootless-containers.md

File metadata and controls

21 lines (16 loc) · 452 Bytes

Chapter 6: Rootless Containers

Rootless containers allow non-root users to run containers, enhancing security by isolating privileges.

Pulling an Image

podman pull nginx
  • Downloads the specified image for container use.

Creating and Running a Rootless Container

  1. Create a Container:
    podman create --name mycontainer nginx
  2. Start the Container:
    podman start mycontainer