annotate pilot/training.yml @ 184:26892906f365 production

Added tag hotfix/1.2.2 for changeset fc93880cda8d
author smith@nwoca.org
date Wed, 20 Sep 2017 16:19:18 +0100
parents de0771f14dd0
children 4de5e1a4637c
rev   line source
124
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
1 usasdb:
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
2 restart: unless-stopped
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
3 image: docker.ssdt.io/trainingdb-usas
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
4 environment:
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
5 - DB_NAME=usasdb
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
6 - DB_USER=usas
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
7 - DB_PASS=usasdefault
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
8 usasapp:
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
9 restart: unless-stopped
150
de0771f14dd0 DEP-12: change image tag to pilot
smith@nwoca.org
parents: 145
diff changeset
10 image: docker.ssdt.io/usas-app:${USAS_TAG:-pilot}
124
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
11 volumes:
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
12 - ${PWD}/config:/config
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
13 environment:
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
14 - DB_HOST=usas-database
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
15 - DB_NAME=usasdb
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
16 - DB_USER=usas
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
17 - DB_PASS=usasdefault
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
18 - JAVA_OPTS=-Xmx640m
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
19 links:
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
20 - usasdb:usas-database
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
21 uspsdb:
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
22 restart: unless-stopped
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
23 image: docker.ssdt.io/trainingdb-usps
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
24 environment:
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
25 - DB_NAME=uspsdb
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
26 - DB_USER=usps
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
27 - DB_PASS=uspsdefault
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
28 uspsapp:
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
29 restart: unless-stopped
150
de0771f14dd0 DEP-12: change image tag to pilot
smith@nwoca.org
parents: 145
diff changeset
30 image: docker.ssdt.io/usps-app:${USPS_TAG:-pilot}
124
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
31 volumes:
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
32 - ${PWD}/config:/config
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
33 environment:
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
34 - DB_HOST=usps-database
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
35 - DB_NAME=uspsdb
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
36 - DB_USER=usps
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
37 - DB_PASS=uspsdefault
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
38 - JAVA_OPTS=-Xmx640m
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
39 links:
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
40 - uspsdb:usps-database
6943c7dd91f6 DEP-12: fix handling of of default vars and volumes
smith@nwoca.org
parents: 122
diff changeset
41