annotate prod/usps-services.yml @ 472:44123bc3d4d4

USASR-5154 try updating
author belknapSSDT <zach.belknap@mcoecn.org>
date Thu, 28 Sep 2023 15:23:35 -0400
parents 9dbc33d0ca96
children
rev   line source
244
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
1 uspsdb:
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
2 restart: unless-stopped
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
3 image: docker.ssdt.io/ssdt-postgres:5
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
4 volumes:
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
5 - uspsdata:/var/lib/postgresql/data
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
6 networks:
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
7 - default
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
8 environment:
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
9 - DB_NAME=uspsdb
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
10 - DB_USER=usps
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
11 - DB_PASS=${USPS_DB_PASSWORD:-uspsdefault}
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
12 uspsapp:
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
13 restart: unless-stopped
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
14 image: docker.ssdt.io/usps-app:${USPS_TAG:-prod}
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
15 depends_on:
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
16 - uspsdb
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
17 networks:
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
18 default:
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
19 aliases:
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
20 - ${USPS_APP_HOST:-uspsapp-svr}
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
21 environment:
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
22 - DB_HOST=uspsdb
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
23 - DB_NAME=uspsdb
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
24 - DB_USER=usps
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
25 - DB_PASS=${USPS_DB_PASSWORD:-uspsdefault}
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
26 - DB_POOL_LEAKDETECTIONTHRESHOLD=300000
259
95c897db1e67 add nginx-proxy ssl policy env varible.
smith@nwoca.org
parents: 244
diff changeset
27 - SSL_POLICY=${SSL_POLICY:-Mozilla-Modern}
298
9dbc33d0ca96 add application.instance.type in default configurations
smith@nwoca.org
parents: 259
diff changeset
28 - APPLICATION_INSTANCE_TYPE=${APPLICATION_INSTANCE_TYPE:-Production}
244
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
29 - USPS_MODULE_USASINTEGRATION_CONFIGURATION_USASCONFIGURATION_CLIENTHOST=${USAS_APP_HOST:-usasapp-svr}
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
30 - USPS_MODULE_USASINTEGRATION_CONFIGURATION_USASCONFIGURATION_CLIENTDNSLOOKUP=true
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
31 - USPS_MODULE_USASINTEGRATION_CONFIGURATION_USASCONFIGURATION_SERVERHOST=0.0.0.0
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
32 - USPS_MODULE_USASINTEGRATION_CONFIGURATION_USASCONFIGURATION_SERVERHOSTDNSLOOKUP=false
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
33 - USPS_MODULE_USASINTEGRATION_CONFIGURATION_USASCONFIGURATION_APPLICATIONID=${USPS_APPLICATIONID:- }
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
34 - USPS_MODULE_USASINTEGRATION_CONFIGURATION_USASCONFIGURATION_APIKEY=${USPS_APIKEY:- }
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
35 - USPS_MODULE_USASINTEGRATION_CONFIGURATION_USASCONFIGURATION_REMOTEAPPLICATIONID=${USAS_APPLICATIONID:- }
fa23b6f5bb58 DEP-14: fix line endings
smith@nwoca.org
parents: 235
diff changeset
36 - USPS_MODULE_USASINTEGRATION_CONFIGURATION_USASCONFIGURATION_REMOTEAPIKEY=${USAS_APIKEY:- }