annotate scripts/restore-usas.sh @ 105:ffc2bc12d491 production

Added tag v1.1.0 for changeset 60bb94387b7d
author smith@nwoca.org
date Tue, 11 Apr 2017 02:18:48 +0100
parents 334d65dac778
children fea886ba7279
rev   line source
54
334d65dac778 add hash bangs to specify bash shell
smith@nwoca.org
parents: 28
diff changeset
1 #!/bin/bash
28
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
2 if [ -z "$1" ]
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
3 then
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
4 echo "Usage: `basename $0` {backup file to restore}"
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
5 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
6 exit $E_NOARGS
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
7 fi
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
8
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
9 docker-compose stop usasapp
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
10 docker-compose restart usasdb
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
11 docker-compose run --rm usasdb sh -c \
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
12 "gunzip -f $1 -c | psql --host=usasdb --username=postgres"
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents:
diff changeset
13 docker-compose start usasapp