Mercurial > public > ssdt-docker
annotate scripts/restore-usas.sh @ 205:f24a5f2abcdf production
Added tag vv1.4.0 for changeset e05f5379eb0e
author | Christopher Springer <springer@nwoca.org> |
---|---|
date | Tue, 26 Sep 2017 15:34:00 +0100 |
parents | fea886ba7279 |
children |
rev | line source |
---|---|
54 | 1 #!/bin/bash |
191
fea886ba7279
DEP-12: add source for .functions.sh to all scripts using compose
smith@nwoca.org
parents:
54
diff
changeset
|
2 |
28 | 3 if [ -z "$1" ] |
4 then | |
5 echo "Usage: `basename $0` {backup file to restore}" | |
6 echo " filename must relative to the container's file system. (e.g. /backup/filename)" | |
7 exit $E_NOARGS | |
8 fi | |
9 | |
191
fea886ba7279
DEP-12: add source for .functions.sh to all scripts using compose
smith@nwoca.org
parents:
54
diff
changeset
|
10 source "${SSDT_SCRIPTS:-$(dirname "${BASH_SOURCE[0]}")}/.functions.sh" |
fea886ba7279
DEP-12: add source for .functions.sh to all scripts using compose
smith@nwoca.org
parents:
54
diff
changeset
|
11 |
28 | 12 docker-compose stop usasapp |
13 docker-compose restart usasdb | |
14 docker-compose run --rm usasdb sh -c \ | |
15 "gunzip -f $1 -c | psql --host=usasdb --username=postgres" | |
16 docker-compose start usasapp |