forked from grongierisc/FHIR-HL7v2-SQL-Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
41 lines (39 loc) · 959 Bytes
/
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
version: '3.7'
services:
fhirhl7v2demo:
build:
context: .
image: fhirhl7v2demo:iris
hostname: fhirhl7v2demo
ports:
- "51776:51773" # 51773 is the superserver default port
- "52776:52773" # 52773 is the webserver/management portal port
volumes:
- type: bind
source: ./misc
target: /home/irisowner/irislicense
# - type: bind
# source: ./sampleFiles
# target: /home/irisowner/src/sampleFiles
- type: bind
source: ./in
target: /home/irisowner/in
- type: bind
source: ./out
target: /home/irisowner/out
fhirhl7v2ui:
build: ./fhirhl7ui
image: fhirhl7v2demo:ui
init: true
depends_on:
- fhirhl7v2demo
ports:
- "4201:4200"
working_dir: /home/node/app
environment:
- NODE_ENV=production
command: "npm run proxy"
volumes:
- type: bind
source: ./fhirhl7ui/app/src/app
target: /home/node/app/src/app