1
0
Fork 0
This commit is contained in:
Ilya Mukhortov 2020-12-27 19:39:59 +10:00
parent f33cf2b967
commit d2746e7f8f
2 changed files with 18 additions and 0 deletions

14
backup_database.sh Normal file
View File

@ -0,0 +1,14 @@
#!/bin/sh
set -e
year_month=$(date +%Y%m)
backup_date=$(date +%Y%m%d_%H%M)
backup_filename="/root/medicine-backups/${year_month}/${backup_date}_database.tar.gz"
mkdir -p foo "/root/medicine-backups/${year_month}"
docker exec -i medicine-stack-postgres \
pg_dump --no-owner -U postgres -F c \
medicine > "${backup_filename}" \
--exclude-table-data=riisz_logging --exclude-table-data=reversion_*
echo backup_filename

4
restore_database.sh Normal file
View File

@ -0,0 +1,4 @@
#!/bin/sh
set -e