kartoza / docker-pg-backup

A cron job that will back up databases running in a docker postgres container
GNU General Public License v2.0
452 stars 103 forks source link

How to restore all backup's #79

Closed cchalifo999 closed 10 months ago

cchalifo999 commented 1 year ago

How to restore all backup's

NyakudyaA commented 1 year ago

Currently there is no native function that does this but that should be an easy one to do since we can loop through the backups extract the db name and use the corresponding archive.

For now you might be better off using a custom bash script

cchalifo999 commented 1 year ago

Currently there is no native function that does this but that should be an easy one to do since we can loop through the backups extract the db name and use the corresponding archive.

For now you might be better off using a custom bash script ty