annotate compose/preview/usps.yml @ 85:8f45c43ea7a4 feature/djs-DEP-12-docker

DEP-12: start upgrading scripts and compose files for RC and docker 1.12
author Dave Smith <smith@nwoca.org>
date Wed, 21 Sep 2016 19:00:41 -0400
parents b2deadc0cf17
children
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
82
b2deadc0cf17 USPSR-2298 Update usps db image to ssdt-postgres:3
Matt Calmes <calmes@nwoca.org>
parents: 33
diff changeset
4 image: docker.ssdt.io/ssdt-postgres:3
24
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
5 volumes:
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
6 - ${PWD}/backup:/backup
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
7 environment:
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
8 - DB_NAME=uspsdb
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
9 - DB_USER=usps
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
10 - DB_PASS=uspsdefault
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
11 uspsapp:
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
12 restart: unless-stopped
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
13 image: docker.ssdt.io/usps-app:preview
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
14 volumes:
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
15 - ${PWD}/config:/config
cea023cef5b2 add usps preview compose files
smith@nwoca.org
parents:
diff changeset
16 environment:
33
0d1d1abe035e return to link style compose
smith@nwoca.org
parents: 32
diff changeset
17 - DB_HOST=database
31
ce113c143408 set DB_* values directly instead of depending on vars from db service
smith@nwoca.org
parents: 24
diff changeset
18 - DB_NAME=uspsdb
ce113c143408 set DB_* values directly instead of depending on vars from db service
smith@nwoca.org
parents: 24
diff changeset
19 - DB_USER=usps
ce113c143408 set DB_* values directly instead of depending on vars from db service
smith@nwoca.org
parents: 24
diff changeset
20 - DB_PASS=uspsdefault