Mercurial > public > ssdt-docker
annotate prod/training.yml @ 371:b371970462c3 production v2.10.0
DEP-21 update update-inventory-app.sh to pull inventory-importapp image
author | Matt Calmes <calmes@ssdt-ohio.org> |
---|---|
date | Sun, 29 Aug 2021 19:09:33 -0400 |
parents | 9dbc33d0ca96 |
children | 9afc8cb478f6 |
rev | line source |
---|---|
235 | 1 # **************************************************************** |
2 # * DO NOT MODIFY THIS FILE. * | |
3 # * * | |
4 # * Place customizations in docker-compose.override.yml and .env * | |
5 # **************************************************************** | |
212
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
6 version: "3.3" |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
7 services: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
8 usasdb: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
9 restart: unless-stopped |
235 | 10 image: docker.ssdt.io/trainingdb-usas:${USAS_DB_TAG:-prod} |
212
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
11 networks: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
12 - default |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
13 environment: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
14 - DB_NAME=usasdb |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
15 - DB_USER=usas |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
16 - DB_PASS=${USAS_DB_PASSWORD:-usasdefault} |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
17 usasapp: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
18 restart: unless-stopped |
235 | 19 image: docker.ssdt.io/usas-app:${USAS_TAG:-prod} |
212
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
20 depends_on: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
21 - usasdb |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
22 networks: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
23 default: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
24 aliases: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
25 - ${USAS_APP_HOST:-usasapp-svr} |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
26 environment: |
298
9dbc33d0ca96
add application.instance.type in default configurations
smith@nwoca.org
parents:
235
diff
changeset
|
27 - APPLICATION_INSTANCE_TYPE=Training |
213
7e24501da32b
DEP-12: add admin password reset for training instances
smith@nwoca.org
parents:
212
diff
changeset
|
28 - APPLICATION_ADMIN_PASSWORD=training |
7e24501da32b
DEP-12: add admin password reset for training instances
smith@nwoca.org
parents:
212
diff
changeset
|
29 - APPLICATION_ADMIN_RESET=true |
212
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
30 - DB_HOST=usasdb |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
31 - DB_NAME=usasdb |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
32 - DB_USER=usas |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
33 - DB_PASS=${USAS_DB_PASSWORD:-usasdefault} |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
34 - DB_POOL_LEAKDETECTIONTHRESHOLD=300000 |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
35 - USAS_MODULE_USPSINTEGRATION_CONFIGURATION_USPSCONFIGURATION_CLIENTHOST=${USPS_APP_HOST:-uspsapp-svr} |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
36 - USAS_MODULE_USPSINTEGRATION_CONFIGURATION_USPSCONFIGURATION_CLIENTDNSLOOKUP=true |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
37 - USAS_MODULE_USPSINTEGRATION_CONFIGURATION_USPSCONFIGURATION_SERVERHOST=0.0.0.0 |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
38 - USAS_MODULE_USPSINTEGRATION_CONFIGURATION_USPSCONFIGURATION_SERVERHOSTDNSLOOKUP=false |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
39 - USAS_MODULE_USPSINTEGRATION_CONFIGURATION_USPSCONFIGURATION_APPLICATIONID=${USAS_APPLICATIONID:- } |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
40 - USAS_MODULE_USPSINTEGRATION_CONFIGURATION_USPSCONFIGURATION_APIKEY=${USAS_APIKEY:- } |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
41 - USAS_MODULE_USPSINTEGRATION_CONFIGURATION_USPSCONFIGURATION_REMOTEAPPLICATIONID=${USPS_APPLICATIONID:- } |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
42 - USAS_MODULE_USPSINTEGRATION_CONFIGURATION_USPSCONFIGURATION_REMOTEAPIKEY=${USPS_APIKEY:- } |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
43 - JAVA_OPTS=-Xmx840m |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
44 uspsdb: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
45 restart: unless-stopped |
235 | 46 image: docker.ssdt.io/trainingdb-usps:${USPS_DB_TAG:-prod} |
212
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
47 networks: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
48 - default |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
49 environment: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
50 - DB_NAME=uspsdb |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
51 - DB_USER=usps |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
52 - DB_PASS=${USPS_DB_PASSWORD:-uspsdefault} |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
53 uspsapp: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
54 restart: unless-stopped |
235 | 55 image: docker.ssdt.io/usps-app:${USPS_TAG:-prod} |
212
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
56 depends_on: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
57 - uspsdb |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
58 networks: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
59 default: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
60 aliases: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
61 - ${USPS_APP_HOST:-uspsapp-svr} |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
62 environment: |
298
9dbc33d0ca96
add application.instance.type in default configurations
smith@nwoca.org
parents:
235
diff
changeset
|
63 - APPLICATION_INSTANCE_TYPE=Training |
213
7e24501da32b
DEP-12: add admin password reset for training instances
smith@nwoca.org
parents:
212
diff
changeset
|
64 - APPLICATION_ADMIN_PASSWORD=training |
7e24501da32b
DEP-12: add admin password reset for training instances
smith@nwoca.org
parents:
212
diff
changeset
|
65 - APPLICATION_ADMIN_RESET=true |
212
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
66 - DB_HOST=uspsdb |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
67 - DB_NAME=uspsdb |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
68 - DB_USER=usps |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
69 - DB_PASS=${USPS_DB_PASSWORD:-uspsdefault} |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
70 - DB_POOL_LEAKDETECTIONTHRESHOLD=300000 |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
71 - USPS_MODULE_USASINTEGRATION_CONFIGURATION_USASCONFIGURATION_CLIENTHOST=${USAS_APP_HOST:-usasapp-svr} |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
72 - USPS_MODULE_USASINTEGRATION_CONFIGURATION_USASCONFIGURATION_CLIENTDNSLOOKUP=true |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
73 - USPS_MODULE_USASINTEGRATION_CONFIGURATION_USASCONFIGURATION_SERVERHOST=0.0.0.0 |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
74 - USPS_MODULE_USASINTEGRATION_CONFIGURATION_USASCONFIGURATION_SERVERHOSTDNSLOOKUP=false |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
75 - USPS_MODULE_USASINTEGRATION_CONFIGURATION_USASCONFIGURATION_APPLICATIONID=${USPS_APPLICATIONID:- } |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
76 - USPS_MODULE_USASINTEGRATION_CONFIGURATION_USASCONFIGURATION_APIKEY=${USPS_APIKEY:- } |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
77 - USPS_MODULE_USASINTEGRATION_CONFIGURATION_USASCONFIGURATION_REMOTEAPPLICATIONID=${USAS_APPLICATIONID:- } |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
78 - USPS_MODULE_USASINTEGRATION_CONFIGURATION_USASCONFIGURATION_REMOTEAPIKEY=${USAS_APIKEY:- } |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
79 - JAVA_OPTS=-Xmx840m |