docker-postgres-backup-local icon indicating copy to clipboard operation
docker-postgres-backup-local copied to clipboard

Backup PostgresSQL to local filesystem with periodic backups and rotate backups.

Results 24 docker-postgres-backup-local issues
Sort by recently updated
recently updated
newest added

- Fixed issue with backups not being reliably pruned - Fixed issue with weekly and monthly backups being deleted and taken again every day - Added the ability to do...

It is possible to secure the created "gz" file with a password, so it can be transferred to a cloud backup server or kept in another place?

enhancement

Thanks for existing, it's helping a lot and it works perfectly. I would like to know if there is any other image that sends the backup files by email or...

Currently, when connecting to the container, one has to re-export all the already given `POSTGRES_HOST/USER/PASSWORD` variables as `PGHOST/USER/PASSWORD` variables to run `psql`/`pg_dump` and so forth. Is there any design decision...

question

Hi Team, thanks for this wonderful docker. It really simplify the things. However the current pg_dump command is very slow, can we use `pg_dump -j 8 -Fd -f /tmp/newout.dir fsdcm_external`...

question

Hello, Can you consider implementing a backup automatically on container startup ? I know I can execute the ./backup.sh command manually, but removing that manual step makes your container even...

enhancement

As far as i can see, to use a POSTGRES_CLUSTER backup to backup all databases, on need to set - `POSTGRES_CLUSTER=true` - `POSTGRES_DB=auth` What i wonder is, why `POSTGRES_DB` was...

question

Before anything else, thank you for providing this awesome docker image! Currently writing a help chart for this (which i will share) and asking myself, what the exact meaning of...

question

We created a helm chart for kubernetes for docker-postgres-backup-local - just wanted to shared that: https://github.com/EugenMayer/helm-charts/tree/main/charts/postgres-pgdump-backup Are there any particular suggestions on what to change? One question somehow would be,...

I do use fairly standard docker-compose file: ``` postgresql_backup: container_name: my-db-backup image: prodrigestivill/postgres-backup-local restart: always volumes: - /opt/db_backups/:/backups links: - postgresql_database depends_on: - postgresql_database environment: - POSTGRES_HOST=postgresql_database - POSTGRES_DB=my-db -...