Mercurial > public > ssdt-docker
comparison compose2/preview/training.yml @ 106:bd1f900972ed feature/djs-DEP-12-docker
DEP-12: move V2 compose files to ../compose2 directory
author | smith@nwoca.org |
---|---|
date | Fri, 21 Apr 2017 17:16:35 +0100 |
parents | compose/rc/training.yml@8f45c43ea7a4 |
children |
comparison
equal
deleted
inserted
replaced
85:8f45c43ea7a4 | 106:bd1f900972ed |
---|---|
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 |