Mercurial > public > ssdt-docker
view scripts/restore-usas.sh @ 212:4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
author | smith@nwoca.org |
---|---|
date | Fri, 06 Oct 2017 21:24:55 +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