annotate prod/import-usps.sh @ 472:44123bc3d4d4

USASR-5154 try updating
author belknapSSDT <zach.belknap@mcoecn.org>
date Thu, 28 Sep 2023 15:23:35 -0400
parents b390c30aa6c6
children
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 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"
235
b390c30aa6c6 DEP-14: update prod tags
smith@nwoca.org
parents: 234
diff changeset
16 [ -f "docker-compose.uspsimport.override.yml" ] && export OVERRIDE2=" -f docker-compose.uspsimport.override.yml"
153
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
17
235
b390c30aa6c6 DEP-14: update prod tags
smith@nwoca.org
parents: 234
diff changeset
18 docker-compose -f docker-compose.yml -f ${SSDT_HOME}/prod/import-usps.yml $OVERRIDE rm -f uspsimport
153
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
19 # start import and wait for completion
235
b390c30aa6c6 DEP-14: update prod tags
smith@nwoca.org
parents: 234
diff changeset
20 docker-compose -f docker-compose.yml -f ${SSDT_HOME}/prod/import-usps.yml $OVERRIDE $OVERRIDE2 up uspsimport | tee uspsimport.log
153
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
21 # remove temporary container
235
b390c30aa6c6 DEP-14: update prod tags
smith@nwoca.org
parents: 234
diff changeset
22 docker-compose -f docker-compose.yml -f ${SSDT_HOME}/prod/import-usps.yml $OVERRIDE rm -f uspsimport
153
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
23 # start application
cf2a5bb38902 DEP-12: add pilot specific scripts
smith@nwoca.org
parents:
diff changeset
24 docker-compose up -d uspsapp