annotate scripts/import-usas.sh @ 94:6f8a77d8d58d

DEP-12: update import compose files
author smith@nwoca.org
date Mon, 10 Apr 2017 18:19:07 +0100
parents d2c44193fbaa
children 5387d0997596
rev   line source
44
e5ba33051de7 add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff changeset
1 #!/bin/bash
e5ba33051de7 add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff changeset
2
73
d2c44193fbaa explictly remove db's before import
smith@nwoca.org
parents: 65
diff changeset
3 source "$( dirname "${BASH_SOURCE[0]}")/.functions.sh"
d2c44193fbaa explictly remove db's before import
smith@nwoca.org
parents: 65
diff changeset
4
44
e5ba33051de7 add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff changeset
5 docker-compose stop usasapp usasdb
73
d2c44193fbaa explictly remove db's before import
smith@nwoca.org
parents: 65
diff changeset
6 resetDbVolume usasdb
44
e5ba33051de7 add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff changeset
7 docker-compose rm -vf usasapp usasdb
e5ba33051de7 add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff changeset
8
e5ba33051de7 add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff changeset
9 export IMP_IRN=${IMP_IRN}
e5ba33051de7 add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff changeset
10 export IMP_URL=${IMP_URL-ftp://username:password@nwoca.org}
e5ba33051de7 add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff changeset
11 export IMP_PATH=${IMP_PATH}
65
e155908fa039 improve import and training scripts. include all containers in info
smith@nwoca.org
parents: 46
diff changeset
12 #
94
6f8a77d8d58d DEP-12: update import compose files
smith@nwoca.org
parents: 73
diff changeset
13 docker-compose -f docker-compose.yml -f /ssdt/compose/preview/import-usas.yml rm -f usasimport
44
e5ba33051de7 add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff changeset
14 # start import and wait for completion
94
6f8a77d8d58d DEP-12: update import compose files
smith@nwoca.org
parents: 73
diff changeset
15 docker-compose -f docker-compose.yml -f /ssdt/compose/preview/import-usas.yml up usasimport | tee usasimport.log
44
e5ba33051de7 add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff changeset
16 # remove temporary container
94
6f8a77d8d58d DEP-12: update import compose files
smith@nwoca.org
parents: 73
diff changeset
17 docker-compose -f docker-compose.yml -f /ssdt/compose/preview/import-usas.yml rm -f usasimport
44
e5ba33051de7 add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff changeset
18 # start application
e5ba33051de7 add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff changeset
19 docker-compose up -d usasapp
e5ba33051de7 add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff changeset
20