-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose-ci.yml
79 lines (66 loc) · 1.64 KB
/
docker-compose-ci.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: ehrgarden
services:
vista:
image: ${CI_REGISTRY_IMAGE}/vista-vehu:${CI_COMMIT_REF_SLUG}
container_name: vehu
ports:
- 127.0.0.1:9080:9080
fhir-vista:
depends_on:
- vista
image: ${CI_REGISTRY_IMAGE}/vista-fhir:${CI_COMMIT_REF_SLUG}
ulimits:
nofile:
soft: 8096
hard: 8096
ports:
- 127.0.0.1:8002:8080
hapi-fhir:
image: ${CI_REGISTRY_IMAGE}/hapi-fhir:${CI_COMMIT_REF_SLUG}
ports:
- 127.0.0.1:8004:8080
ibm-fhir:
image: ${CI_REGISTRY_IMAGE}/ibm-fhir:${CI_COMMIT_REF_SLUG}
environment:
BOOTSTRAP_DB: true
ports:
- 127.0.0.1:8005:9443
blaze:
image: ${CI_REGISTRY_IMAGE}/blaze-fhir:${CI_COMMIT_REF_SLUG}
ports:
- 127.0.0.1:8006:8080
intersystems:
image: ${CI_REGISTRY_IMAGE}/iris-fhir:${CI_COMMIT_REF_SLUG}
hostname: fhir-template
ports:
- 32782:1972
- 8007:52773
- 32784:53773
command:
- -a
- iris session iris -U%SYS '##class(Security.Users).UnExpireUserPasswords("*")'
- --check-caps false
volumes:
- ./data:/data
- ./:/home/irisowner/irisdev
synthea:
image: ${CI_REGISTRY_IMAGE}/synthea:${CI_COMMIT_REF_SLUG}
ports:
- 127.0.0.1:9000:9000
volumes:
- ./files:/synthea/output
neo4j-test:
image: ${CI_REGISTRY_IMAGE}/neo4j-test:${CI_COMMIT_REF_SLUG}
container_name: neo4jTest
environment:
NEO4J_AUTH: neo4j/test-garden
ports:
- 127.0.0.1:7475:7474
- 127.0.0.1:7688:7687
volumes:
- ./neo4jTest/data:/data
profiles:
- neo4jTest
volumes:
blaze-data:
neo4jTestvolume: {}