annotate prod/import-usas.sh @ 234:2ae65177f74e

DEP-14: copy pilot scripts to prod
author smith@nwoca.org
date Wed, 10 Jan 2018 00:44:05 +0000
parents pilot/import-usas.sh@3133ce001603
children b390c30aa6c6
rev   line source
153
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
1 #!/bin/bash
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
2
154
454cc08435dd DEP-12: fix relative paths
smith@nwoca.org
parents: 153
diff changeset
3 source "$( dirname "${BASH_SOURCE[0]}")/../scripts/.functions.sh"
153
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
4
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
5 docker-compose stop usasapp usasdb
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
6 resetDbVolume usasdb
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
7 docker-compose rm -vf usasapp usasdb
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
8
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
9 export IMP_IRN=${IMP_IRN}
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
10 export IMP_URL=${IMP_URL-ftp://username:password@nwoca.org}
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
11 export IMP_PATH=${IMP_PATH}
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
12
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
13 [ -f "docker-compose.override.yml" ] && export OVERRIDE=" -f docker-compose.override.yml"
233
3133ce001603 add ability to specify usasimport override file
smith@nwoca.org
parents: 154
diff changeset
14 [ -f "docker-compose.usasimport.override.yml" ] && export OVERRIDE2=" -f docker-compose.usasimport.override.yml"
153
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
15 #
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
16 docker-compose -f docker-compose.yml -f ${SSDT_HOME}/pilot/import-usas.yml $OVERRIDE rm -f usasimport
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
17 # start import and wait for completion
233
3133ce001603 add ability to specify usasimport override file
smith@nwoca.org
parents: 154
diff changeset
18 docker-compose -f docker-compose.yml -f ${SSDT_HOME}/pilot/import-usas.yml $OVERRIDE $OVERRIDE2 up usasimport | tee usasimport.log
153
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
19 # remove temporary container
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
20 docker-compose -f docker-compose.yml -f ${SSDT_HOME}/pilot/import-usas.yml $OVERRIDE rm -f usasimport
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
21 # start application
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
22 docker-compose up -d usasapp
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
23