Mercurial > public > ssdt-docker
annotate prod/training.yml @ 241:fa943a14123d production v2.0.0
flow: Merged <release> 'v2.0.0' to <master> ('production').
author | smith@nwoca.org |
---|---|
date | Wed, 10 Jan 2018 01:45:28 +0000 |
parents | b390c30aa6c6 |
children | 9dbc33d0ca96 |
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: |
213
7e24501da32b
DEP-12: add admin password reset for training instances
smith@nwoca.org
parents:
212
diff
changeset
|
27 - APPLICATION_ADMIN_PASSWORD=training |
7e24501da32b
DEP-12: add admin password reset for training instances
smith@nwoca.org
parents:
212
diff
changeset
|
28 - 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
|
29 - 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
|
30 - 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
|
31 - 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
|
32 - 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
|
33 - 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
|
34 - 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
|
35 - 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
|
36 - 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
|
37 - 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
|
38 - 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
|
39 - 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
|
40 - 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
|
41 - 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
|
42 - 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
|
43 uspsdb: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
44 restart: unless-stopped |
235 | 45 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
|
46 networks: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
47 - default |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
48 environment: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
49 - 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
|
50 - 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
|
51 - 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
|
52 uspsapp: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
53 restart: unless-stopped |
235 | 54 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
|
55 depends_on: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
56 - uspsdb |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
57 networks: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
58 default: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
59 aliases: |
4de5e1a4637c
DEP-12: add training.yml and training.sh setup script for pilot training instances
smith@nwoca.org
parents:
150
diff
changeset
|
60 - ${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
|
61 environment: |
213
7e24501da32b
DEP-12: add admin password reset for training instances
smith@nwoca.org
parents:
212
diff
changeset
|
62 - APPLICATION_ADMIN_PASSWORD=training |
7e24501da32b
DEP-12: add admin password reset for training instances
smith@nwoca.org
parents:
212
diff
changeset
|
63 - 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
|
64 - 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
|
65 - 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
|
66 - 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
|
67 - 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
|
68 - 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
|
69 - 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
|
70 - 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
|
71 - 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
|
72 - 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
|
73 - 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
|
74 - 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
|
75 - 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
|
76 - 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
|
77 - JAVA_OPTS=-Xmx840m |