view scripts/restore-usas.sh @ 224:fe6e83ff2d12 production

Added tag v1.6.0 for changeset 04030a5e355a
author smith@nwoca.org
date Mon, 09 Oct 2017 17:23:09 +0100
parents fea886ba7279
children
line wrap: on
line source
#!/bin/bash

if [ -z "$1" ]
then
  echo "Usage: `basename $0` {backup file to restore}"
  echo  " filename must relative to the container's file system. (e.g. /backup/filename)"
  exit $E_NOARGS
fi

source "${SSDT_SCRIPTS:-$(dirname "${BASH_SOURCE[0]}")}/.functions.sh"

docker-compose stop usasapp
docker-compose restart usasdb
docker-compose run --rm usasdb sh -c \
   "gunzip -f $1 -c | psql --host=usasdb --username=postgres"
docker-compose start usasapp