annotate scripts/restore-usps.sh @ 199:ab47ca9899ea

DEP-12: update training db scripts
author smith@nwoca.org
date Mon, 25 Sep 2017 21:50:52 +0100
parents fea886ba7279
children
rev   line source
54
334d65dac778 add hash bangs to specify bash shell
smith@nwoca.org
parents: 35
diff changeset
1 #!/bin/bash
35
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
191
fea886ba7279 DEP-12: add source for .functions.sh to all scripts using compose
smith@nwoca.org
parents: 54
diff changeset
8 source "${SSDT_SCRIPTS:-$(dirname "${BASH_SOURCE[0]}")}/.functions.sh"
35
1c74d1289739 fix lfs
Dave smith <smith@nwoca.org>
parents: 34
diff changeset
9
1c74d1289739 fix lfs
Dave smith <smith@nwoca.org>
parents: 34
diff changeset
10 docker-compose stop uspsapp
1c74d1289739 fix lfs
Dave smith <smith@nwoca.org>
parents: 34
diff changeset
11 docker-compose restart uspsdb
1c74d1289739 fix lfs
Dave smith <smith@nwoca.org>
parents: 34
diff changeset
12 docker-compose run --rm uspsdb sh -c \
1c74d1289739 fix lfs
Dave smith <smith@nwoca.org>
parents: 34
diff changeset
13 "gunzip -f $1 -c | psql --host=uspsdb --username=postgres"
1c74d1289739 fix lfs
Dave smith <smith@nwoca.org>
parents: 34
diff changeset
14 docker-compose start uspsapp
1c74d1289739 fix lfs
Dave smith <smith@nwoca.org>
parents: 34
diff changeset
15