Go to file
kolaente aa2dc54925
chore: add license
2021-12-05 13:49:06 +01:00
.gitignore Add postgres dumper 2021-08-18 21:50:04 +02:00
Dockerfile feat: scratch docker image 2021-12-05 12:44:47 +01:00
LICENSE chore: add license 2021-12-05 13:49:06 +01:00
README.md chore: update default config 2021-12-05 13:45:42 +01:00
cleanup.go feat: cleanup old backups 2021-12-05 13:38:36 +01:00
client.go Add methods to get containers 2021-08-18 20:09:45 +02:00
config.go chore: update default config 2021-12-05 13:45:42 +01:00
dump.go feat: move running the actual dump command to the db container 2021-12-05 12:39:23 +01:00
dump_mysql.go chore: use log everywhere 2021-12-05 13:44:36 +01:00
dump_mysql_test.go Add tests to build mysql args 2021-08-18 22:34:28 +02:00
dump_postgres.go chore: use log everywhere 2021-12-05 13:44:36 +01:00
dump_postgres_test.go feat: move running the actual dump command to the db container 2021-12-05 12:39:23 +01:00
dump_test.go Add test for determining the container dumper type 2021-08-18 22:38:59 +02:00
go.mod Add methods to get containers 2021-08-18 20:09:45 +02:00
go.sum Add methods to get containers 2021-08-18 20:09:45 +02:00
helper.go Add dump helpers 2021-08-18 21:29:17 +02:00
main.go feat: add cron schedule 2021-12-05 13:42:35 +01:00
save.go feat: restructure writing to the file 2021-12-05 13:24:06 +01:00
store.go feat: remove old containers 2021-12-05 13:40:53 +01:00

README.md

Zero-Fuss Docker Database Backup

A simple tool to create backup of all databases on a host. Supports postgres and mysql/mariadb.

Successor to this script.

Usage

Simply point it at your docker socket, mount a backup volume and be done:

docker run -v $PWD:/backups -v /var/run/docker.sock:/var/run/docker.sock kolaente/db-backup

The tool will find all database containers and create backups of them periodically. It will also discover new containers as they are started and won't try to back up containers which have gone away.

When running, all backups for the current run are time-stamped into a sub folder of the backup directory (see below).

Config

All config is done with environment variables.

BACKUP_FOLDER

Where all backup files will be stored.

Default: /backups

BACKUP_INTERVAL

The interval at which backups will happen. Must be a parsable string as time.Duration. Must be positive.

Default: 3h

BACKUP_MAX

How many backups to keep. If more backups are stored in the backup folder, the oldest one will be removed until there are only as many as this config variable.

Default: 12