How to take a DB backup?
I'm running self-hosted via docker-compose, how do I make a backup of my DB in postgresql and restore it on a new instance?
6 Replies
There is no special guidelines for this. You can look into
pg_dump
for example@thomast
Thank you for your response.
Does this mean I need to backup all my PG's Database?
you have different databases that manage twenty? If yes, you should indeed
There is only one PG container.
So I was wondering if it backs up all the databases in PG.
yep you only need this one!
thanks you @thomast