annotate scripts/restore-usas.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: 28
diff changeset
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
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
3 if [ -z "$1" ]
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
4 then
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
5 echo "Usage: `basename $0` {backup file to restore}"
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
6 echo " filename must relative to the container's file system. (e.g. /backup/filename)"
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
7 exit $E_NOARGS
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
8 fi
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
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
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
12 docker-compose stop usasapp
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
13 docker-compose restart usasdb
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
14 docker-compose run --rm usasdb sh -c \
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
15 "gunzip -f $1 -c | psql --host=usasdb --username=postgres"
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
16 docker-compose start usasapp