-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #495 from vimc/vimc-7432
vimc-7432 Update guidance for 2024 Rfp touchstone
- Loading branch information
Showing
10 changed files
with
65 additions
and
29 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
docker stop $(docker ps -aq) | ||
docker rm $(docker ps -aq) -f | ||
docker network prune --force | ||
docker volume prune --force | ||
|
||
docker ps |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
orderlyweb.api.url=http://montagu-orderly_web-1:8888/api/v2 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,19 +28,21 @@ docker run -v $ROOT/demo:/orderly $OW_CLI_IMAGE add-users [email protected] | |
docker run -v $ROOT/demo:/orderly $OW_CLI_IMAGE grant [email protected] */users.manage | ||
|
||
# Run the APIs and database | ||
docker-compose pull | ||
docker-compose --project-name montagu up -d | ||
docker compose pull | ||
docker compose --project-name montagu up -d | ||
|
||
# Start the APIs | ||
docker exec montagu_api_1 mkdir -p /etc/montagu/api/ | ||
docker exec montagu_api_1 touch /etc/montagu/api/go_signal | ||
# Wait for the database | ||
docker exec montagu_db_1 montagu-wait.sh | ||
docker exec montagu-api-1 mkdir -p /etc/montagu/api/ | ||
docker container cp $here/montagu-api.config.properties montagu-api-1:/etc/montagu/api/config.properties | ||
docker exec montagu-api-1 touch /etc/montagu/api/go_signal | ||
|
||
# Wait for the database - this can take a while on buildkite | ||
docker exec montagu-db-1 montagu-wait.sh 300 | ||
|
||
# Migrate the database | ||
docker pull $MONTAGU_MIGRATE_IMAGE | ||
docker run --network=montagu_default $MONTAGU_MIGRATE_IMAGE | ||
|
||
#start orderly web | ||
docker exec montagu_orderly_web_1 mkdir -p /etc/orderly/web | ||
docker exec montagu_orderly_web_1 touch /etc/orderly/web/go_signal | ||
docker exec montagu-orderly_web-1 mkdir -p /etc/orderly/web | ||
docker exec montagu-orderly_web-1 touch /etc/orderly/web/go_signal |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env bash | ||
set -ex | ||
docker-compose --project-name montagu down --volumes | ||
docker-compose --project-name montagu rm | ||
docker compose --project-name montagu down --volumes | ||
docker compose --project-name montagu rm |
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
Binary file added
BIN
+344 KB
app/src/main/contrib/components/Responsibilities/Overview/rfp-2024-guidance.pdf
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
montagu.api_url=http://montagu_api_1:8080/v1 | ||
montagu.api_url=http://montagu-api-1:8080/v1 |