A guide how backups work in Coolify.
const VALID_CRON_STRINGS = [ 'every_minute' => '* * * * *', 'hourly' => '0 * * * *', 'daily' => '0 0 * * *', 'weekly' => '0 0 * * 0', 'monthly' => '0 0 1 * *', 'yearly' => '0 0 1 1 *', ];
pg_dump --format=custom --no-acl --no-owner --username <username> <databaseName>
pg_restore --verbose --clean -h localhost -U postgres -d postgres pg-dump-postgres-1697207547.dmp
mysqldump -u root -p <password> <datatabaseName>
mariadb-dump -u root -p <password> <datatabaseName>
mongodump --authenticationDatabase=admin --uri=<uri> --gzip --archive=<archive>
mongodump --authenticationDatabase=admin --uri=<uri> --gzip --archive=<archive> --excludeCollection=<collectionName> --excludeCollection=<collectionName>