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
|
1
|
|
2 if [ -z "$1" ]
|
|
3 then
|
|
4 echo "Usage: `basename $0` {backup file to restore}"
|
|
5 echo " filename must relative to the container's file system. (e.g. /backup/filename)"
|
|
6 exit $E_NOARGS
|
|
7 fi
|
|
8
|
|
9 docker-compose stop uspsapp
|
|
10 docker-compose restart uspsdb
|
|
11 docker-compose run --rm uspsdb sh -c \
|
|
12 "gunzip -f $1 -c | psql --host=uspsdb --username=postgres"
|
|
13 docker-compose start uspsapp
|