Mercurial > public > ssdt-docker
annotate scripts/import-usps.sh @ 55:77ff739c078d
add script to provide shortened docker ps with ssdt labels
author | smith@nwoca.org |
---|---|
date | Thu, 25 Feb 2016 08:47:45 -0500 |
parents | dfbb643b82a3 |
children | e155908fa039 |
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 |
e5ba33051de7
add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff
changeset
|
3 docker-compose stop uspsapp uspsdb |
e5ba33051de7
add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff
changeset
|
4 docker-compose rm -vf uspsapp uspsdb |
e5ba33051de7
add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff
changeset
|
5 |
e5ba33051de7
add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff
changeset
|
6 export IMP_IRN=${IMP_IRN} |
e5ba33051de7
add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff
changeset
|
7 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
|
8 export IMP_PATH=${IMP_PATH} |
45 | 9 export IMP_ANON=${IMP_ANON:--a false} |
44
e5ba33051de7
add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff
changeset
|
10 export IMP_EM=${IMP_EM-} |
e5ba33051de7
add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff
changeset
|
11 |
e5ba33051de7
add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff
changeset
|
12 # start import and wait for completion |
46 | 13 docker-compose -f docker-compose.yml -f /ssdt/compose/preview/import.yml up uspsimport | tee uspsimport.log |
44
e5ba33051de7
add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff
changeset
|
14 # remove temporary container |
e5ba33051de7
add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff
changeset
|
15 docker-compose -f docker-compose.yml -f /ssdt/compose/preview/import.yml rm -f uspsimport |
e5ba33051de7
add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff
changeset
|
16 # start application |
e5ba33051de7
add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff
changeset
|
17 docker-compose up -d uspsapp |
e5ba33051de7
add scripts and compose file for importing from server
Dave smith <smith@nwoca.org>
parents:
diff
changeset
|
18 |