annotate compose/preview/training.yml @ 85:8f45c43ea7a4 feature/djs-DEP-12-docker

DEP-12: start upgrading scripts and compose files for RC and docker 1.12
author Dave Smith <smith@nwoca.org>
date Wed, 21 Sep 2016 19:00:41 -0400
parents 809ba4a960bc
children
rev   line source
37
4cdd20de8b38 add training compose file
smith@nwoca.org
parents:
diff changeset
1 usasdb:
4cdd20de8b38 add training compose file
smith@nwoca.org
parents:
diff changeset
2 restart: unless-stopped
4cdd20de8b38 add training compose file
smith@nwoca.org
parents:
diff changeset
3 image: docker.ssdt.io/trainingdb-usas
4cdd20de8b38 add training compose file
smith@nwoca.org
parents:
diff changeset
4 environment:
4cdd20de8b38 add training compose file
smith@nwoca.org
parents:
diff changeset
5 - DB_NAME=usasdb
4cdd20de8b38 add training compose file
smith@nwoca.org
parents:
diff changeset
6 - DB_USER=usas
38
cd482d0a46e8 remove tab
smith@nwoca.org
parents: 37
diff changeset
7 - DB_PASS=usasdefault
37
4cdd20de8b38 add training compose file
smith@nwoca.org
parents:
diff changeset
8 usasapp:
39
297b56dfba19 add training compose file
smith@nwoca.org
parents: 38
diff changeset
9 restart: unless-stopped
297b56dfba19 add training compose file
smith@nwoca.org
parents: 38
diff changeset
10 image: docker.ssdt.io/usas-app:preview
297b56dfba19 add training compose file
smith@nwoca.org
parents: 38
diff changeset
11 volumes:
297b56dfba19 add training compose file
smith@nwoca.org
parents: 38
diff changeset
12 - ${PWD}/config:/config
297b56dfba19 add training compose file
smith@nwoca.org
parents: 38
diff changeset
13 environment:
297b56dfba19 add training compose file
smith@nwoca.org
parents: 38
diff changeset
14 - DB_HOST=usas-database
297b56dfba19 add training compose file
smith@nwoca.org
parents: 38
diff changeset
15 - DB_NAME=usasdb
297b56dfba19 add training compose file
smith@nwoca.org
parents: 38
diff changeset
16 - DB_USER=usas
297b56dfba19 add training compose file
smith@nwoca.org
parents: 38
diff changeset
17 - DB_PASS=usasdefault
48
809ba4a960bc reduce memory options for training app instances
smith@nwoca.org
parents: 39
diff changeset
18 - JAVA_OPTS=-Xmx640m
37
4cdd20de8b38 add training compose file
smith@nwoca.org
parents:
diff changeset
19 links:
39
297b56dfba19 add training compose file
smith@nwoca.org
parents: 38
diff changeset
20 - usasdb:usas-database
37
4cdd20de8b38 add training compose file
smith@nwoca.org
parents:
diff changeset
21 uspsdb:
4cdd20de8b38 add training compose file
smith@nwoca.org
parents:
diff changeset
22 restart: unless-stopped
4cdd20de8b38 add training compose file
smith@nwoca.org
parents:
diff changeset
23 image: docker.ssdt.io/trainingdb-usps
4cdd20de8b38 add training compose file
smith@nwoca.org
parents:
diff changeset
24 environment:
4cdd20de8b38 add training compose file
smith@nwoca.org
parents:
diff changeset
25 - DB_NAME=uspsdb
4cdd20de8b38 add training compose file
smith@nwoca.org
parents:
diff changeset
26 - DB_USER=usps
4cdd20de8b38 add training compose file
smith@nwoca.org
parents:
diff changeset
27 - DB_PASS=uspsdefault
4cdd20de8b38 add training compose file
smith@nwoca.org
parents:
diff changeset
28 uspsapp:
39
297b56dfba19 add training compose file
smith@nwoca.org
parents: 38
diff changeset
29 restart: unless-stopped
297b56dfba19 add training compose file
smith@nwoca.org
parents: 38
diff changeset
30 image: docker.ssdt.io/usps-app:preview
297b56dfba19 add training compose file
smith@nwoca.org
parents: 38
diff changeset
31 volumes:
297b56dfba19 add training compose file
smith@nwoca.org
parents: 38
diff changeset
32 - ${PWD}/config:/config
297b56dfba19 add training compose file
smith@nwoca.org
parents: 38
diff changeset
33 environment:
297b56dfba19 add training compose file
smith@nwoca.org
parents: 38
diff changeset
34 - DB_HOST=usps-database
297b56dfba19 add training compose file
smith@nwoca.org
parents: 38
diff changeset
35 - DB_NAME=uspsdb
297b56dfba19 add training compose file
smith@nwoca.org
parents: 38
diff changeset
36 - DB_USER=usps
297b56dfba19 add training compose file
smith@nwoca.org
parents: 38
diff changeset
37 - DB_PASS=uspsdefault
48
809ba4a960bc reduce memory options for training app instances
smith@nwoca.org
parents: 39
diff changeset
38 - JAVA_OPTS=-Xmx640m
37
4cdd20de8b38 add training compose file
smith@nwoca.org
parents:
diff changeset
39 links:
39
297b56dfba19 add training compose file
smith@nwoca.org
parents: 38
diff changeset
40 - uspsdb:usps-database
37
4cdd20de8b38 add training compose file
smith@nwoca.org
parents:
diff changeset
41