Mercurial > public > ssdt-docker
annotate compose/preview/usps.yml @ 32:46e876a745d5
adjust yml files for docker neworking
author | smith@nwoca.org |
---|---|
date | Tue, 19 Jan 2016 01:46:26 +0000 |
parents | ce113c143408 |
children | 0d1d1abe035e |
rev | line source |
---|---|
24 | 1 # base compose file for usps preview release |
2 uspsdb: | |
3 restart: unless-stopped | |
4 image: docker.ssdt.io/ssdt-postgres:2 | |
32 | 5 hostname: uspsdb |
24 | 6 volumes: |
7 - ${PWD}/backup:/backup | |
8 environment: | |
9 - DB_NAME=uspsdb | |
10 - DB_USER=usps | |
11 - DB_PASS=uspsdefault | |
12 uspsapp: | |
13 restart: unless-stopped | |
14 image: docker.ssdt.io/usps-app:preview | |
15 volumes: | |
16 - ${PWD}/config:/config | |
17 environment: | |
32 | 18 - DB_HOST=uspsdb |
31
ce113c143408
set DB_* values directly instead of depending on vars from db service
smith@nwoca.org
parents:
24
diff
changeset
|
19 - DB_NAME=uspsdb |
ce113c143408
set DB_* values directly instead of depending on vars from db service
smith@nwoca.org
parents:
24
diff
changeset
|
20 - DB_USER=usps |
ce113c143408
set DB_* values directly instead of depending on vars from db service
smith@nwoca.org
parents:
24
diff
changeset
|
21 - DB_PASS=uspsdefault |