Mercurial > public > ssdt-docker
annotate scripts/restore-usps.sh @ 34:d8f906afd895
fix lf's
author | Dave smith <smith@nwoca.org> |
---|---|
date | Wed, 20 Jan 2016 10:41:23 -0500 |
parents | b4ea91a25193 |
children | 1c74d1289739 |
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 | |
34 | 14 |