annotate compose2/preview/usxs-services.yml @ 124:6943c7dd91f6

DEP-12: fix handling of of default vars and volumes
author smith@nwoca.org
date Sat, 06 May 2017 17:12:22 +0100
parents 48866e4ff8ff
children b1296e800108
rev   line source
121
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
1 # base compose file for USxS Preview releases
113
40d81a3dd3cc DEP-12: downgrade to 2.1 format to do missing extends feature in 3.0
smith@nwoca.org
parents: 110
diff changeset
2 version: "2.1"
85
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
diff changeset
3 services:
122
4875af3f3383 DEP-12: move to compose v2
smith@nwoca.org
parents: 121
diff changeset
4 usasdb-base:
85
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
diff changeset
5 restart: unless-stopped
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
diff changeset
6 image: docker.ssdt.io/ssdt-postgres:3
121
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
7 volumes:
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
8 - usasdata:/var/lib/postgresql/data
85
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
diff changeset
9 environment:
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
diff changeset
10 - DB_NAME=usasdb
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
diff changeset
11 - DB_USER=usas
110
950df79a9d65 DEP-12: update password configuration
smith@nwoca.org
parents: 109
diff changeset
12 - DB_PASS=${USAS_DB_PASSWORD:-usasdefault}
122
4875af3f3383 DEP-12: move to compose v2
smith@nwoca.org
parents: 121
diff changeset
13 usasapp-base:
85
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
diff changeset
14 restart: unless-stopped
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
diff changeset
15 image: docker.ssdt.io/usas-app:preview
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
diff changeset
16 environment:
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
diff changeset
17 - DB_HOST=usasdb
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
diff changeset
18 - DB_NAME=usasdb
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
diff changeset
19 - DB_USER=usas
110
950df79a9d65 DEP-12: update password configuration
smith@nwoca.org
parents: 109
diff changeset
20 - DB_PASS=${USAS_DB_PASSWORD:-usasdefault}
120
2e25338c847e DEP-12: update integration vars
smith@nwoca.org
parents: 119
diff changeset
21 - USAS_MODULE_USPSINTEGRATION_CONFIGURATION_USPSCONFIGURATION_CLIENTHOST=uspsapp
2e25338c847e DEP-12: update integration vars
smith@nwoca.org
parents: 119
diff changeset
22 - USAS_MODULE_USPSINTEGRATION_CONFIGURATION_USPSCONFIGURATION_CLIENTDNSLOOKUP=true
2e25338c847e DEP-12: update integration vars
smith@nwoca.org
parents: 119
diff changeset
23 - USAS_MODULE_USPSINTEGRATION_CONFIGURATION_USPSCONFIGURATION_SERVERHOST=0.0.0.0
2e25338c847e DEP-12: update integration vars
smith@nwoca.org
parents: 119
diff changeset
24 - USAS_MODULE_USPSINTEGRATION_CONFIGURATION_USPSCONFIGURATION_CLIENTDNSLOOKUP=false
122
4875af3f3383 DEP-12: move to compose v2
smith@nwoca.org
parents: 121
diff changeset
25 usasimport-base:
121
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
26 image: docker.ssdt.io/usas-import:preview
124
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 123
diff changeset
27 command: -i ${IMP_IRN- } -u ${IMP_URL- } -r ${IMP_PATH- }
121
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
28 environment:
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
29 - DB_HOST=usasdb
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
30 - DB_NAME=usasdb
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
31 - DB_USER=usas
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
32 - DB_PASS=${USAS_DB_PASSWORD:-usasdefault}
122
4875af3f3383 DEP-12: move to compose v2
smith@nwoca.org
parents: 121
diff changeset
33 uspsdb-base:
121
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
34 restart: unless-stopped
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
35 image: docker.ssdt.io/ssdt-postgres:3
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
36 volumes:
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
37 - uspsdata:/var/lib/postgresql/data
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
38 environment:
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
39 - DB_NAME=uspsdb
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
40 - DB_USER=usps
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
41 - DB_PASS=${USPS_DB_PASSWORD:-uspsdefault}
122
4875af3f3383 DEP-12: move to compose v2
smith@nwoca.org
parents: 121
diff changeset
42 uspsapp-base:
121
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
43 restart: unless-stopped
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
44 image: docker.ssdt.io/usps-app:preview
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
45 environment:
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
46 - DB_HOST=uspsdb
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
47 - DB_NAME=uspsdb
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
48 - DB_USER=usps
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
49 - DB_PASS=${USPS_DB_PASSWORD:-uspsdefault}
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
50 - USPS_MODULE_USASINTEGRATION_CONFIGURATION_USASCONFIGURATION_CLIENTHOST=usasapp
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
51 - USPS_MODULE_USASINTEGRATION_CONFIGURATION_USASCONFIGURATION_CLIENTDNSLOOKUP=true
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
52 - USPS_MODULE_USASINTEGRATION_CONFIGURATION_USASCONFIGURATION_CLIENTHOST=0.0.0.0
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
53 - USPS_MODULE_USASINTEGRATION_CONFIGURATION_USASCONFIGURATION_CLIENTDNSLOOKUP=false
122
4875af3f3383 DEP-12: move to compose v2
smith@nwoca.org
parents: 121
diff changeset
54 uspsimport-base:
121
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
55 image: docker.ssdt.io/usps-import:preview
124
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 123
diff changeset
56 command: -i ${IMP_IRN- } -u ${IMP_URL- } -r ${IMP_PATH- } ${IMP_ANON- } ${IMP_EM- }
121
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
57 environment:
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
58 - DB_HOST=uspsdb
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
59 - DB_NAME=uspsdb
cf5348287cf6 DEP-12: consolidate compose services
smith@nwoca.org
parents: 120
diff changeset
60 - DB_USER=usps
124
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 123
diff changeset
61 - DB_PASS=${USPS_DB_PASSWORD:-uspsdefault}
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 123
diff changeset
62