Mercurial > public > ssdt-docker
annotate compose/preview/training.yml @ 223:04030a5e355a production v1.6.0
flow: Merged <release> 'v1.6.0' to <master> ('production').
author | smith@nwoca.org |
---|---|
date | Mon, 09 Oct 2017 17:22:23 +0100 |
parents | 809ba4a960bc |
children |
rev | line source |
---|---|
37 | 1 usasdb: |
2 restart: unless-stopped | |
3 image: docker.ssdt.io/trainingdb-usas | |
4 environment: | |
5 - DB_NAME=usasdb | |
6 - DB_USER=usas | |
38 | 7 - DB_PASS=usasdefault |
37 | 8 usasapp: |
39 | 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 | |
48
809ba4a960bc
reduce memory options for training app instances
smith@nwoca.org
parents:
39
diff
changeset
|
18 - JAVA_OPTS=-Xmx640m |
37 | 19 links: |
39 | 20 - usasdb:usas-database |
37 | 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: | |
39 | 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 | |
48
809ba4a960bc
reduce memory options for training app instances
smith@nwoca.org
parents:
39
diff
changeset
|
38 - JAVA_OPTS=-Xmx640m |
37 | 39 links: |
39 | 40 - uspsdb:usps-database |
37 | 41 |