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
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
1 # base compose file for usps preview release
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
2 uspsdb:
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
3 restart: unless-stopped
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
4 image: docker.ssdt.io/ssdt-postgres:2
32
46e876a745d5 adjust yml files for docker neworking
smith@nwoca.org
parents: 31
diff changeset
5 hostname: uspsdb
24
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
6 volumes:
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
7 - ${PWD}/backup:/backup
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
8 environment:
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
9 - DB_NAME=uspsdb
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
10 - DB_USER=usps
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
11 - DB_PASS=uspsdefault
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
12 uspsapp:
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
13 restart: unless-stopped
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
14 image: docker.ssdt.io/usps-app:preview
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
15 volumes:
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
16 - ${PWD}/config:/config
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
17 environment:
32
46e876a745d5 adjust yml files for docker neworking
smith@nwoca.org
parents: 31
diff changeset
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