postgres-backup-s3
postgres-backup-s3 copied to clipboard
A handy Docker container to periodically backup PostgreSQL to S3
Thank you for amazing project. Want to mount a large local mount point where backup is create. My root was 20GB, I've another mount point which is around 100GB, And...
[Feature Request] Hi eeshugerman, thanks for this great tool! :-) It would be great to use an AWS EC2 instance profile where you set the permissions in the IAM role...
I have the following configuration: ```yaml backups: image: eeshugerman/postgres-backup-s3:16 host: accessories env: clear: SCHEDULE: "@daily" BACKUP_KEEP_DAYS: 7 S3_ENDPOINT: https://xxx.eu.r2.cloudflarestorage.com/sumiu-files S3_PREFIX: backup S3_REGION: auto S3_BUCKET: pg_backups POSTGRES_HOST: 10.0.0.3 POSTGRES_DATABASE: sumiu_production POSTGRES_USER:...
I used self-signatures. minio which is selfhosted. Let's Encrypt raise the exception: SSL validation failed for https://minio.xxx.cn:3000/rvm/backup/rvm_2024-01-19T07%3A56%3A48.dump [SSL: TLSV1_UNRECOGNIZED_NAME] tlsv1 unrecognized name (_ssl.c:1006) how to disable the ssl verify
Added support for multiple databases. I found schicklings approach pretty straightforward. `POSTGRES_DATABASE=database1,database2,database3`. Nothing has changed in how the database is backed up - simply allowing iterating over multiple. It could...
Hello, This project has helped me a lot! In my environments I need to back up more than one database. But there is no possibility to use `pg_dumpall` so I...
For my use case it would really help to have the backup created in a directory that isnt the root. This will allow users to do things like setup a...
Lots of people don't use AWS S3 as storage provider and I think it should be more explicit that we can use one with this docker image. Feel free to...
The official https://hub.docker.com/_/postgres image uses `POSTGRES_DB` as environment variable for the database name. I think this repo should match the name so we can use only one environment variable in...