sainth@lemmy.worldtoSelfhosted@lemmy.world•rootless backup of rootless podman volumes?English
2·
10 days agoAs your user account, just run something like:
podman volume export VOLUME >backup.tar
Or from another machine, say you want to do a remote backup from your server:
ssh user@host podman volume export VOLUME | zstd -o backup.tar.zstd
Ah, in that case you will probably need to go into the container to do the backup. I avoid mounted volumes.