SIEMbitwardendnscrypthome assistantjellyfinjitsimulti-factor authenticationnextcloudonlyofficepiholeraspberry pirocket.chatsyncthingtorwazuhwireguard
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
392 B
23 lines
392 B
|
6 years ago
|
#!/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}"
|