-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
39 lines (36 loc) · 1.11 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
version: "3.3"
networks:
form-builder:
driver: bridge
services:
form-builder:
container_name: FORM_BUILDER
build: .
volumes:
- .:/app
- /app/node_modules
ports:
- "3000:3000"
- "35729:35729"
environment:
- NLPAAS_URL=http://localhost:1337
- FORM_CMS_URL=http://localhost:1337
- FHIR_ISS=https://apps.hdap.gatech.edu/omoponfhir3/fhir
- FHIR_SCOPES='patient/Binary.read patient/Condition.read patient/DocumentReference.read patient/MedicationAdministration.read patient/MedicationOrder.read patient/MedicationStatement.read patient/Observation.read patient/Patient.read patient/Procedure.read profile openid online_access launch'
- FHIR_CLIENT_ID=50808ec0-d1f1-4531-bd1c-9cdfa8b60081
networks:
- form-builder
fake-nlpaas:
container_name: FAKE_NLPAAS
hostname: fake-nlpaas
build: ./demo/fake-nlpaas
volumes:
- /app/node_modules/ #empties container node_modules
ports:
- "1337:1337"
environment:
- NODE_ENV=development
- LATENCY=2000
- RES_STATUS_CODE=200
networks:
- form-builder