-
Notifications
You must be signed in to change notification settings - Fork 55
/
docker-compose.yml
44 lines (42 loc) · 1.13 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
version:3.8
services:
postgres:
image: postgres:15
container_name: postgres_container
environment:
POSTGRES_PASSWORD: ecrnow@2024
POSTGRES_DB: ecrnow
networks:
- ecrnow_network
ports:
- "5432:5432"
ecr-now:
build:
context: .
dockerfile: Dockerfile
container_name: ecr-now
depends_on:
- postgres
networks:
- ecrnow_network
volumes:
- D://ecr-now:/config
environment:
- logging.file.name=/config/ecrNow.log
- ersd.file.location=/config/eRSDv2_specification_bundle.json
- schematron.file.location=/config/schematron/CDAR2_IG_PHCASERPT_R2_STU1.1_SCHEMATRON.sch
- xsd.schemas.location=/config/schemas/CDA_SDTC.xsd
- kar.directory=/config/kars
- bsa.output.directory=/config/bsa-output/
- custom-query.directory=/config/custom-queries
- jdbc.url=jdbc:postgresql://postgres_container:5432/ecrNow
- jdbc.username=postgres
- jdbc.password=ecr@2024
- security.key=test123
ports:
- "8081:8080"
networks:
ecrnow_network:
driver: bridge
external: true
name: ecrnow_network