-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' of https://github.com/RADAR-base/RADAR-Appserver i…
…nto fix/transient-task
- Loading branch information
Showing
29 changed files
with
527 additions
and
168 deletions.
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
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
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
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
version: "3.8" | ||
|
||
services: | ||
appserver: | ||
image: radarbase/radar-appserver | ||
build: ../../../.. | ||
restart: always | ||
ports: | ||
- "8080:8080" | ||
volumes: | ||
- ../radar-is.yml:/resources/radar-is.yml | ||
- ../../../../logs/:/var/log/radar/appserver/ | ||
environment: | ||
JDK_JAVA_OPTIONS: -Xmx4G -Djava.security.egd=file:/dev/./urandom | ||
FCMSERVER_SENDERID: "1043784930865" | ||
FCMSERVER_SERVERKEY: "AAAA8wZuFjE:APA91bGpJQ3Sft0mZAaVMjDJGNLjFsdDLTo-37ZN69r4lKlHiRN78t4bCfkNKcXG5c9cJg-eGtWB7FqceQUDVtf7B1Zvw_2ycynqwKe2YqXFeyaq83Gf0R3AS1EKSWFS60GCr8eUEliz" | ||
RADAR_ADMIN_USER: "radar" | ||
RADAR_ADMIN_PASSWORD: "radar" | ||
SPRING_APPLICATION_JSON: '{"spring":{"boot":{"admin":{"client":{"url":"http://spring-boot-admin:1111","username":"radar","password":"appserver"}}}}}' | ||
RADAR_IS_CONFIG_LOCATION: "/resources/radar-is.yml" | ||
SPRING_BOOT_ADMIN_CLIENT_INSTANCE_NAME: radar-appserver | ||
SPRING_DATASOURCE_URL: jdbc:postgresql://postgres:5432/radar |
15 changes: 15 additions & 0 deletions
15
src/integrationTest/resources/docker/appserver_dockerhub/docker-compose.yml
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,15 @@ | ||
# start the dockerstack using a prebuilt image pulled from dockerhub. This stack does not work without adding GOOGLE_APPLICATION_CREDENTIALS | ||
version: "3.8" | ||
|
||
include: | ||
- "../non_appserver/docker-compose.yml" | ||
|
||
services: | ||
appserver: | ||
extends: | ||
file: ../appserver.yml | ||
service: appserver | ||
networks: | ||
- db | ||
- default | ||
- admin |
8 changes: 8 additions & 0 deletions
8
src/integrationTest/resources/docker/appserver_downstream/docker-compose.override.yml
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,8 @@ | ||
version: "3.8" | ||
|
||
services: | ||
managementportal: | ||
extends: | ||
file: ../managementportal.yml | ||
service: managementportal | ||
image: radarbase/management-portal:dev |
8 changes: 8 additions & 0 deletions
8
src/integrationTest/resources/docker/appserver_downstream/docker-compose.yml
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,8 @@ | ||
# start the supporting dockerstack using the :dev image of the managementportal dependency. | ||
version: "3.8" | ||
|
||
include: | ||
- "../non_appserver/docker-compose.yml" | ||
|
||
# This file should be called in conjunction with the accompanying docker-compose.override.yml file | ||
# This can be done by navigating to the directory with both files and calling 'docker compose up -d' |
16 changes: 16 additions & 0 deletions
16
src/integrationTest/resources/docker/appserver_local/docker-compose.yml
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,16 @@ | ||
# start the dockerstack using a locally built docker image of the appserver. This stack does not work without adding GOOGLE_APPLICATION_CREDENTIALS | ||
version: "3.8" | ||
|
||
include: | ||
- "../non_appserver/docker-compose.yml" | ||
|
||
services: | ||
appserver: | ||
extends: | ||
file: ../appserver.yml | ||
service: appserver | ||
image: appserver | ||
networks: | ||
- db | ||
- default | ||
- admin |
Oops, something went wrong.