Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,29 @@ | ||
#!/usr/bin/env bash | ||
|
||
cd external_tools | ||
docker-compose stop | ||
docker-compose rm -v -f | ||
|
||
docker volume rm external_tools_cassandra-volume | ||
docker volume rm external_tools_postgres-volume | ||
|
||
docker-compose pull | ||
|
||
docker-compose up -d | ||
sleep 180 | ||
cd .. | ||
|
||
java -cp external_tools/lang-0.1.0-BUILD-SNAPSHOT.jar org.apache.fineract.cn.lang.security.RsaKeyPairFactory UNIX > .env | ||
cat env_variables >> .env | ||
|
||
docker-compose stop | ||
docker-compose rm -f | ||
docker-compose pull | ||
|
||
docker-compose up -d provisioner-ms | ||
sleep 180 | ||
|
||
docker-compose up -d rhythm-ms identity-ms customer-ms accounting-ms deposit-ms portfolio-ms office-ms teller-ms fims-web-app | ||
sleep 180 | ||
|
||
|