annotate scripts/restore-usps.sh @ 35:1c74d1289739

fix lfs
author Dave smith <smith@nwoca.org>
date Wed, 20 Jan 2016 10:48:10 -0500
parents d8f906afd895
children 334d65dac778
rev   line source
35
1c74d1289739 fix lfs
Dave smith <smith@nwoca.org>
parents: 34
diff changeset
1
1c74d1289739 fix lfs
Dave smith <smith@nwoca.org>
parents: 34
diff changeset
2 if [ -z "$1" ]
1c74d1289739 fix lfs
Dave smith <smith@nwoca.org>
parents: 34
diff changeset
3 then
1c74d1289739 fix lfs
Dave smith <smith@nwoca.org>
parents: 34
diff changeset
4 echo "Usage: `basename $0` {backup file to restore}"
1c74d1289739 fix lfs
Dave smith <smith@nwoca.org>
parents: 34
diff changeset
5 echo " filename must relative to the container's file system. (e.g. /backup/filename)"
1c74d1289739 fix lfs
Dave smith <smith@nwoca.org>
parents: 34
diff changeset
6 exit $E_NOARGS
1c74d1289739 fix lfs
Dave smith <smith@nwoca.org>
parents: 34
diff changeset
7 fi
1c74d1289739 fix lfs
Dave smith <smith@nwoca.org>
parents: 34
diff changeset
8
1c74d1289739 fix lfs
Dave smith <smith@nwoca.org>
parents: 34
diff changeset
9 docker-compose stop uspsapp
1c74d1289739 fix lfs
Dave smith <smith@nwoca.org>
parents: 34
diff changeset
10 docker-compose restart uspsdb
1c74d1289739 fix lfs
Dave smith <smith@nwoca.org>
parents: 34
diff changeset
11 docker-compose run --rm uspsdb sh -c \
1c74d1289739 fix lfs
Dave smith <smith@nwoca.org>
parents: 34
diff changeset
12 "gunzip -f $1 -c | psql --host=uspsdb --username=postgres"
1c74d1289739 fix lfs
Dave smith <smith@nwoca.org>
parents: 34
diff changeset
13 docker-compose start uspsapp
1c74d1289739 fix lfs
Dave smith <smith@nwoca.org>
parents: 34
diff changeset
14