annotate scripts/backup-usps.sh @ 135:03e39b95d904

DEP-12: convert to compose verison 3.1 (again)
author smith@nwoca.org
date Mon, 15 May 2017 21:33:24 +0100
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
25
727f4cbded5e add usps backup script
Dave smith <smith@nwoca.org>
parents:
diff changeset
2 docker-compose run --rm uspsdb sh -c \
28
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 25
diff changeset
3 "pg_dump -Cc --if-exists --host=uspsdb \
25
727f4cbded5e add usps backup script
Dave smith <smith@nwoca.org>
parents:
diff changeset
4 --dbname=\$USPSDB_ENV_DB_NAME \
727f4cbded5e add usps backup script
Dave smith <smith@nwoca.org>
parents:
diff changeset
5 --username=\$USPSDB_ENV_DB_USER | gzip \
727f4cbded5e add usps backup script
Dave smith <smith@nwoca.org>
parents:
diff changeset
6 > /backup/\$USPSDB_ENV_DB_NAME.$(date +%Y-%m-%d-%H-%M-%S).backup.gz"