# Default storage.conf template for unraid-podman. # # Defines the Podman storage graph root/driver. On Unraid this MUST point at # the mounted podman.img loopback (or equivalent cache-pool/disk path), never # at a path under /mnt/user (FUSE) or RAM-root /var/lib/containers directly. # See docs/ARCHITECTURE.md section 4.3 and section 10 (Images). # # Full reference: https://github.com/containers/storage/blob/main/docs/containers-storage.conf.5.md [storage] driver = "overlay" # runroot and graphroot are set at runtime by rc.podman based on # /boot/config/plugins/podman/podman.cfg (configurable storage location), # not hardcoded here. TODO: document the exact substitution mechanism once # rc.podman is implemented. # graphroot = "/var/lib/containers/storage" # runroot = "/var/run/containers/storage" [storage.options] # TODO: overlay-specific mount options once the loopback filesystem # (XFS with ftype=1, or BTRFS) is finalized.