Mercurial > public > ssdt-docker
comparison pilot/training.yml @ 145:75aa7005b544
DEP-12: move comopse files to 'pilot' location
author | smith@nwoca.org |
---|---|
date | Mon, 10 Jul 2017 18:13:18 +0100 |
parents | compose3/preview/training.yml@03e39b95d904 |
children | de0771f14dd0 |
comparison
equal
deleted
inserted
replaced
144:249ec634da33 | 145:75aa7005b544 |
---|---|
1 usasdb: | |
2 restart: unless-stopped | |
3 image: docker.ssdt.io/trainingdb-usas | |
4 environment: | |
5 - DB_NAME=usasdb | |
6 - DB_USER=usas | |
7 - DB_PASS=usasdefault | |
8 usasapp: | |
9 restart: unless-stopped | |
10 image: docker.ssdt.io/usas-app:preview | |
11 volumes: | |
12 - ${PWD}/config:/config | |
13 environment: | |
14 - DB_HOST=usas-database | |
15 - DB_NAME=usasdb | |
16 - DB_USER=usas | |
17 - DB_PASS=usasdefault | |
18 - JAVA_OPTS=-Xmx640m | |
19 links: | |
20 - usasdb:usas-database | |
21 uspsdb: | |
22 restart: unless-stopped | |
23 image: docker.ssdt.io/trainingdb-usps | |
24 environment: | |
25 - DB_NAME=uspsdb | |
26 - DB_USER=usps | |
27 - DB_PASS=uspsdefault | |
28 uspsapp: | |
29 restart: unless-stopped | |
30 image: docker.ssdt.io/usps-app:preview | |
31 volumes: | |
32 - ${PWD}/config:/config | |
33 environment: | |
34 - DB_HOST=usps-database | |
35 - DB_NAME=uspsdb | |
36 - DB_USER=usps | |
37 - DB_PASS=uspsdefault | |
38 - JAVA_OPTS=-Xmx640m | |
39 links: | |
40 - uspsdb:usps-database | |
41 |