Restore a Backup
Locate snapshots
# List all snapshots
vger list
# List the 5 most recent snapshots
vger list --last 5
# List snapshots for a specific source
vger list --source docs
Inspect snapshot contents
# List files inside a snapshot
vger list --snapshot a1b2c3d4
Restore to a directory
# Restore all files from a snapshot
vger restore --snapshot a1b2c3d4 --dest /tmp/restored
Restore applies extended attributes (xattrs) by default. Control this with the top-level xattrs.enabled config setting.
Browse via WebDAV (mount)
Browse snapshot contents via a local WebDAV server.
# Serve all snapshots (default: http://127.0.0.1:8080)
vger mount
# Serve a single snapshot
vger mount --snapshot a1b2c3d4
# Only snapshots from a specific source
vger mount --source docs
# Custom listen address
vger mount --address 127.0.0.1:9090