annotate scripts/restore-usps.sh @ 30:b4ea91a25193

fix startup after restore
author smith@nwoca.org
date Mon, 18 Jan 2016 21:34:54 +0000
parents 443aa0be3f09
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