annotate scripts/restore-usas.sh @ 85:8f45c43ea7a4 feature/djs-DEP-12-docker

DEP-12: start upgrading scripts and compose files for RC and docker 1.12
author Dave Smith <smith@nwoca.org>
date Wed, 21 Sep 2016 19:00:41 -0400
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