annotate scripts/backup-usas.sh @ 85:8f45c43ea7a4 feature/djs-DEP-12-docker

DEP-12: start upgrading scripts and compose files for RC and docker 1.12
author Dave Smith <smith@nwoca.org>
date Wed, 21 Sep 2016 19:00:41 -0400
parents 334d65dac778
children 303259c08b7d
rev   line source
54
334d65dac778 add hash bangs to specify bash shell
smith@nwoca.org
parents: 28
diff changeset
1 #!/bin/bash
26
93f2976a6c2f add usas backup script
Dave smith <smith@nwoca.org>
parents:
diff changeset
2 docker-compose run --rm usasdb sh -c \
28
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 26
diff changeset
3 "pg_dump -Cc --if-exists --host=usasdb \
26
93f2976a6c2f add usas backup script
Dave smith <smith@nwoca.org>
parents:
diff changeset
4 --dbname=\$USASDB_ENV_DB_NAME \
93f2976a6c2f add usas backup script
Dave smith <smith@nwoca.org>
parents:
diff changeset
5 --username=\$USASDB_ENV_DB_USER | gzip \
93f2976a6c2f add usas backup script
Dave smith <smith@nwoca.org>
parents:
diff changeset
6 > /backup/\$USASDB_ENV_DB_NAME.$(date +%Y-%m-%d-%H-%M-%S).backup.gz"