docker-backup-database icon indicating copy to clipboard operation
docker-backup-database copied to clipboard

Docker image to periodically backup your database (MySQL, Postgres, or MongoDB) to S3 or local disk.

Results 7 docker-backup-database issues
Sort by recently updated
recently updated
newest added

Hello, first of all thank you for this nice tool. It seems very well put together. I wanted to use it to backup my MySQL database to Backblaze B2 (s3-compatible...

Hello, I have two questions, the first would be, is it possible to use an env value to say that it should back up all databases (if possible one file...

for example: ```yaml DATABASE_OPTS: '--exclude-table=table1_* --exclude-table=table12_* --exclude-table=table3_*' ``` this become one single argument in pg_dump command instead of 3 args.

Hi! I have a Docker Compose config that looks something like this: ``` services: mysql: image: mysql:8 environment: MYSQL_DATABASE: ${MYSQL_DATABASE:-app} MYSQL_RANDOM_ROOT_PASSWORD: true MYSQL_PASSWORD: ${MYSQL_PASSWORD:-password} MYSQL_USER: ${MYSQL_USER:-app} volumes: - mysql_data:/var/lib/mysql hostname:...

## Summary by CodeRabbit * **New Features** * Database dumps for MySQL and PostgreSQL are now saved directly as compressed files, avoiding stdout. This simplifies export workflows and ensures outputs...

I'm tring to dump mysql to s3 and I find it write entire content of sql (output of mysqldump) to stdout, make it hard to find out what's happening

When using the DATABASE_OPTS with postgres to set compression level, or when using compression in general. The resulting dump is compressed by Postgres and the backup tool. Is this intentional?