annotate scripts/backup-usps.sh @ 27:d8c2d819e814

add usps restore script
author Dave smith <smith@nwoca.org>
date Mon, 18 Jan 2016 15:21:45 -0500
parents 727f4cbded5e
children 443aa0be3f09
rev   line source
25
727f4cbded5e add usps backup script
Dave smith <smith@nwoca.org>
parents:
diff changeset
1
727f4cbded5e add usps backup script
Dave smith <smith@nwoca.org>
parents:
diff changeset
2 docker-compose run --rm uspsdb sh -c \
727f4cbded5e add usps backup script
Dave smith <smith@nwoca.org>
parents:
diff changeset
3 "pg_dump -Cc --host=uspsdb \
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"