2022-12-12 09:55:30 +00:00
|
|
|
# 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_RESTORE_* ENV vars in config.env is set properly.
|
|
|
|
|
|
|
|
export $(grep -v '^#' config.env | xargs)
|
|
|
|
|
2022-12-30 14:01:49 +00:00
|
|
|
echo "Starting restore...."
|
|
|
|
|
2022-12-30 14:04:57 +00:00
|
|
|
sudo docker run -it --net=host --rm \
|
2022-12-12 09:55:30 +00:00
|
|
|
--env-file config.env \
|
|
|
|
--volume=$(pwd)$DATABASE_RESTORE_DIRECTORY:/var/lib/postgresql/data \
|
|
|
|
postgres:latest /usr/bin/pg_restore --dbname=postgresql://$DATABASE_RESTORE_USERNAME:$DATABASE_RESTORE_PASSWORD@$DATABASE_RESTORE_HOST:$DATABASE_RESTORE_PORT/$DATABASE_RESTORE_NAME /var/lib/postgresql/data/$DATABASE_RESTORE_FILENAME
|
2022-12-30 14:01:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
echo "Restore Completed"
|