Mercurial > public > ssdt-docker
annotate pilot/training.yml @ 229:6210629ba54f production v1.7.0
flow: Merged <release> 'v1.7.0' to <master> ('production').
author | smith@nwoca.org |
---|---|
date | Mon, 09 Oct 2017 21:35:35 +0100 |
parents | 7e24501da32b |
children |
rev | line source |
---|---|
212
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
1 # **** DO NOT MODIFY THIS FILE. ****" |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
2 # Place customizations in docker-compose.override.yml and .env |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
3 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
|
4 services: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
5 usasdb: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
6 restart: unless-stopped |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
7 image: docker.ssdt.io/trainingdb-usas:pilot |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
8 networks: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
9 - default |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
10 environment: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
11 - 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
|
12 - 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
|
13 - 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
|
14 usasapp: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
15 restart: unless-stopped |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
16 image: docker.ssdt.io/usas-app:${USAS_TAG:-pilot} |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
17 depends_on: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
18 - usasdb |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
19 networks: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
20 default: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
21 aliases: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
22 - ${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
|
23 environment: |
213
7e24501da32b
DEP-12: add admin password reset for training instances
smith@nwoca.org
parents:
212
diff
changeset
|
24 - APPLICATION_ADMIN_PASSWORD=training |
7e24501da32b
DEP-12: add admin password reset for training instances
smith@nwoca.org
parents:
212
diff
changeset
|
25 - 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
|
26 - 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
|
27 - 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
|
28 - 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
|
29 - 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
|
30 - 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
|
31 - 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
|
32 - 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
|
33 - 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
|
34 - 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
|
35 - 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
|
36 - 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
|
37 - 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
|
38 - 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
|
39 - 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
|
40 uspsdb: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
41 restart: unless-stopped |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
42 image: docker.ssdt.io/trainingdb-usps:pilot |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
43 networks: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
44 - default |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
45 environment: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
46 - 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
|
47 - 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
|
48 - 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
|
49 uspsapp: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
50 restart: unless-stopped |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
51 image: docker.ssdt.io/usps-app:${USPS_TAG:-pilot} |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
52 depends_on: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
53 - uspsdb |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
54 networks: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
55 default: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
56 aliases: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
57 - ${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
|
58 environment: |
213
7e24501da32b
DEP-12: add admin password reset for training instances
smith@nwoca.org
parents:
212
diff
changeset
|
59 - APPLICATION_ADMIN_PASSWORD=training |
7e24501da32b
DEP-12: add admin password reset for training instances
smith@nwoca.org
parents:
212
diff
changeset
|
60 - 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
|
61 - 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
|
62 - 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
|
63 - 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
|
64 - 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
|
65 - 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
|
66 - 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
|
67 - 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
|
68 - 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
|
69 - 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
|
70 - 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
|
71 - 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
|
72 - 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
|
73 - 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
|
74 - JAVA_OPTS=-Xmx840m |