docker-compose-dbbackup/default-docker-compose.conf-sample

34 lines
723 B
Text

#
# SQL dump backup directory
#
BU_DIR=/home/data/mastodon/backup
#
# Docker Compose details
#
# dir containing the docker-compose.yml
DC_DIR=/home/docker/mastodon
# name of the database container
DC_CONTAINER=postgres
# Command to dump the relevant database(s)
DUMP_CMD='pg_dumpall -c -U postgres'
#
# Reporting
#
# email address to send reports to, and subject
EMAIL=webmaster@oerfoundation.org
EMAIL_SUBJ="Mastodon on OERu Open Postgres Backup Report"
#
# Optional overrides
#
# Default retention
#BU_TO_KEEP_HOURLY=24
#BU_TO_KEEP_DAILY=7
#BU_TO_KEEP_WEEKLY=4
#BU_TO_KEEP_MONTHLY=12
#BU_TO_KEEP_YEARLY=7
#
# Set backup priority: -20 highest, 0 default, 19 lowest
#NICE_VAL=0
#
# Verbosity 0 = false, 1 = true
#VERBOSE=0