annotate pilot/training.yml @ 212:4de5e1a4637c

DEP-12: add training.yml and training.sh setup script for pilot training instances
author smith@nwoca.org
date Fri, 06 Oct 2017 21:24:55 +0100
parents de0771f14dd0
children 7e24501da32b
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:
4de5e1a4637c DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents: 150
diff changeset
24 - 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
25 - 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
26 - 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
27 - 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
28 - 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
29 - 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
30 - 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
31 - 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
32 - 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
33 - 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
34 - 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
35 - 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
36 - 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
37 - 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
38 uspsdb:
4de5e1a4637c DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents: 150
diff changeset
39 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
40 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
41 networks:
4de5e1a4637c DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents: 150
diff changeset
42 - default
4de5e1a4637c DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents: 150
diff changeset
43 environment:
4de5e1a4637c DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents: 150
diff changeset
44 - 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
45 - 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
46 - 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
47 uspsapp:
4de5e1a4637c DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents: 150
diff changeset
48 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
49 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
50 depends_on:
4de5e1a4637c DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents: 150
diff changeset
51 - uspsdb
4de5e1a4637c DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents: 150
diff changeset
52 networks:
4de5e1a4637c DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents: 150
diff changeset
53 default:
4de5e1a4637c DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents: 150
diff changeset
54 aliases:
4de5e1a4637c DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents: 150
diff changeset
55 - ${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
56 environment:
4de5e1a4637c DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents: 150
diff changeset
57 - 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
58 - 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
59 - 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
60 - 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
61 - 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
62 - 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
63 - 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
64 - 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
65 - 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
66 - 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
67 - 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
68 - 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
69 - 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
70 - JAVA_OPTS=-Xmx840m