Mercurial > public > ssdt-docker
comparison pilot/import-usas.sh @ 153:cf2a5bb38902
DEP-12: add pilot specific scripts
author | smith@nwoca.org |
---|---|
date | Wed, 19 Jul 2017 21:25:50 +0100 |
parents | |
children | 454cc08435dd |
comparison
equal
deleted
inserted
replaced
152:d64806928eca | 153:cf2a5bb38902 |
---|---|
1 #!/bin/bash | |
2 | |
3 source "$( dirname "${BASH_SOURCE[0]}")/.functions.sh" | |
4 | |
5 docker-compose stop usasapp usasdb | |
6 resetDbVolume usasdb | |
7 docker-compose rm -vf usasapp usasdb | |
8 | |
9 export IMP_IRN=${IMP_IRN} | |
10 export IMP_URL=${IMP_URL-ftp://username:password@nwoca.org} | |
11 export IMP_PATH=${IMP_PATH} | |
12 | |
13 [ -f "docker-compose.override.yml" ] && export OVERRIDE=" -f docker-compose.override.yml" | |
14 # | |
15 docker-compose -f docker-compose.yml -f ${SSDT_HOME}/pilot/import-usas.yml $OVERRIDE rm -f usasimport | |
16 # start import and wait for completion | |
17 docker-compose -f docker-compose.yml -f ${SSDT_HOME}/pilot/import-usas.yml $OVERRIDE up usasimport | tee usasimport.log | |
18 # remove temporary container | |
19 docker-compose -f docker-compose.yml -f ${SSDT_HOME}/pilot/import-usas.yml $OVERRIDE rm -f usasimport | |
20 # start application | |
21 docker-compose up -d usasapp | |
22 |