Linux

Where Does Podman Store Images and Containers?

Podman image and container storage: user rootless (~/.local/share/containers) versus system (/var/lib/containers).

Last updated

Podman splits storage by privilege: rootless containers live in ~/.local/share/containers, system containers in /var/lib/containers. Same tools, separate worlds.

The split explains most missing-image confusion. Check which user pulled before assuming data loss.

Where Podman stores this, by platform

Linux
~/.local/share/containers

Rootless storage: images, containers and volumes per user. System store sits in /var/lib/containers for rootful use. Manage with podman system prune, not deletions.

Frequently asked questions

Why can't I see my Podman images as root?

Rootless data lives under your home; rootful under /var/lib. The two stores are invisible to each other, so images pulled as root do not appear for your user.

Notice an outdated path? Let us know.