annotate scripts/restore-usps.sh @ 31:ce113c143408

set DB_* values directly instead of depending on vars from db service
author smith@nwoca.org
date Tue, 19 Jan 2016 01:10:38 +0000
parents b4ea91a25193
children d8f906afd895
rev   line source
28
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
1
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
2 if [ -z "$1" ]
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
3 then
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
4 echo "Usage: `basename $0` {backup file to restore}"
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
5 echo " filename must relative to the container's file system. (e.g. /backup/filename)"
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
6 exit $E_NOARGS
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
7 fi
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
8
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
9 docker-compose stop uspsapp
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
10 docker-compose restart uspsdb
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
11 docker-compose run --rm uspsdb sh -c \
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
12 "gunzip -f $1 -c | psql --host=uspsdb --username=postgres"
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
13 docker-compose start uspsapp