When generating the bundle for offline installs we run this command: ``` podman run -it --rm --pull always \ --volume ${HOME}/bundle:/root/bundle:z \ docker.io/cloudctl/koffer:4.6.1 bundle \ --config https://codectl.io/docs/config/stable/sparta.yml ``` As the mirror runs you can see /var is where the data is actually stored and not in the ${HOME}/bundle partition until the very end. The data goes into /var because of /var/lib/containers is where podman volumes are by default. - Update the docs to show users how they can use something other than their home directory. - Use the destination directory as the temporary storage until the files are made into a tarball and deleted. The destination directory is the most likely place to have the storage space needed for the mirroring.