mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 07:10:53 +00:00
10 lines
656 B
Bash
10 lines
656 B
Bash
# This file takes last 30 days backup. Make sure you run this file atleast once/day.
|
|
# The backup will be in the format of db-(date of the month).backup
|
|
# Before the backup, please make sure DATABASE_BACKUP_* ENV vars in config.env is set properly.
|
|
|
|
export $(grep -v '^#' config.env | xargs)
|
|
|
|
sudo docker run -it --net=host --rm \
|
|
--env-file config.env \
|
|
--volume=$(pwd)$DATABASE_BACKUP_DIRECTORY:/var/lib/postgresql/data \
|
|
postgres:latest /usr/bin/pg_dump -Fc --dbname=postgresql://$DATABASE_BACKUP_USERNAME:$DATABASE_BACKUP_PASSWORD@$DATABASE_BACKUP_HOST:$DATABASE_BACKUP_PORT/$DATABASE_BACKUP_NAME --file=/var/lib/postgresql/data/db-$(date +%d).backup |