Mercurial > public > ssdt-docker
annotate prod/import-usps.yml @ 406:3508fd2d323a production 2.14.0
flow: Merged <release> '2.14.0' to <master> ('production').
author | Jason Klinger <klinger@nwoca.org> |
---|---|
date | Fri, 20 May 2022 20:14:22 +0100 |
parents | b390c30aa6c6 |
children | 9afc8cb478f6 |
rev | line source |
---|---|
145
75aa7005b544
DEP-12: move comopse files to 'pilot' location
smith@nwoca.org
parents:
136
diff
changeset
|
1 version: "3.3" |
108 | 2 services: |
3 uspsimport: | |
235 | 4 image: docker.ssdt.io/usps-import:${USPS_TAG:-prod} |
136
72f15ffc9ad2
DEP-12: convert compose files to 3.1. remove template. update bash script to create composite docker-files without extends. prevent overwriting manual changes to docker-comose.yml
smith@nwoca.org
parents:
135
diff
changeset
|
5 command: -i ${IMP_IRN- } -u ${IMP_URL- } -r ${IMP_PATH- } ${IMP_ANON- } ${IMP_EM- } |
72f15ffc9ad2
DEP-12: convert compose files to 3.1. remove template. update bash script to create composite docker-files without extends. prevent overwriting manual changes to docker-comose.yml
smith@nwoca.org
parents:
135
diff
changeset
|
6 depends_on: |
72f15ffc9ad2
DEP-12: convert compose files to 3.1. remove template. update bash script to create composite docker-files without extends. prevent overwriting manual changes to docker-comose.yml
smith@nwoca.org
parents:
135
diff
changeset
|
7 - uspsdb |
72f15ffc9ad2
DEP-12: convert compose files to 3.1. remove template. update bash script to create composite docker-files without extends. prevent overwriting manual changes to docker-comose.yml
smith@nwoca.org
parents:
135
diff
changeset
|
8 environment: |
72f15ffc9ad2
DEP-12: convert compose files to 3.1. remove template. update bash script to create composite docker-files without extends. prevent overwriting manual changes to docker-comose.yml
smith@nwoca.org
parents:
135
diff
changeset
|
9 - DB_HOST=uspsdb |
72f15ffc9ad2
DEP-12: convert compose files to 3.1. remove template. update bash script to create composite docker-files without extends. prevent overwriting manual changes to docker-comose.yml
smith@nwoca.org
parents:
135
diff
changeset
|
10 - DB_NAME=uspsdb |
72f15ffc9ad2
DEP-12: convert compose files to 3.1. remove template. update bash script to create composite docker-files without extends. prevent overwriting manual changes to docker-comose.yml
smith@nwoca.org
parents:
135
diff
changeset
|
11 - DB_USER=usps |
72f15ffc9ad2
DEP-12: convert compose files to 3.1. remove template. update bash script to create composite docker-files without extends. prevent overwriting manual changes to docker-comose.yml
smith@nwoca.org
parents:
135
diff
changeset
|
12 - DB_PASS=${USPS_DB_PASSWORD:-uspsdefault} |
72f15ffc9ad2
DEP-12: convert compose files to 3.1. remove template. update bash script to create composite docker-files without extends. prevent overwriting manual changes to docker-comose.yml
smith@nwoca.org
parents:
135
diff
changeset
|
13 |