annotate pilot/import-usps.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
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
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
3 source "$( dirname "${BASH_SOURCE[0]}")/.functions.sh"
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 uspsapp uspsdb
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
6 resetDbVolume uspsdb
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
7 docker-compose rm -vf uspsapp uspsdb
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 export IMP_ANON=${IMP_ANON:--a false}
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
13 export IMP_EM=${IMP_EM-}
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
14
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
15 [ -f "docker-compose.override.yml" ] && export OVERRIDE=" -f docker-compose.override.yml"
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
16
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
17 docker-compose -f docker-compose.yml -f ${SSDT_HOME}/pilot/import-usps.yml $OVERRIDE rm -f uspsimport
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
18 # start import and wait for completion
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
19 docker-compose -f docker-compose.yml -f ${SSDT_HOME}/pilot/import-usps.yml $OVERRIDE up uspsimport | tee uspsimport.log
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
20 # remove temporary container
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
21 docker-compose -f docker-compose.yml -f ${SSDT_HOME}/pilot/import-usps.yml $OVERRIDE rm -f uspsimport
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
22 # start application
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
23 docker-compose up -d uspsapp