mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 20:28:01 +03:00
bcd0a8c46e
* Fix & imporve postgres backup/restore scripts * Update PostgreSQL backup/restore docs * Fix postgres Dockerfile regression * Extend error messages in PostgreSQL maintenance scipts
23 lines
392 B
Bash
23 lines
392 B
Bash
#!/usr/bin/env bash
|
|
|
|
|
|
### View backups.
|
|
###
|
|
### Usage:
|
|
### $ docker-compose -f <environment>.yml (exec |run --rm) postgres backups
|
|
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o nounset
|
|
|
|
|
|
working_dir="$(dirname ${0})"
|
|
source "${working_dir}/_sourced/constants.sh"
|
|
source "${working_dir}/_sourced/messages.sh"
|
|
|
|
|
|
message_welcome "These are the backups you have got:"
|
|
|
|
ls -lht "${BACKUP_DIR_PATH}"
|