forked from intrahealth/client-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.cicd.hapi.yml
54 lines (47 loc) · 959 Bytes
/
docker-compose.cicd.hapi.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
# this is for testing versions of HAPI in CI, not for production
version: '3'
services:
opencr:
container_name: opencr
image: intrahealth/opencr
ports:
- "3000:3000"
depends_on:
- fhir
- es
restart: always
environment:
- NODE_ENV=cicd
# networks:
# - opencr
fhir:
container_name: hapi-fhir
image: hapiproject/hapi:${HAPI_VERSION}
ports:
- "8080:8080"
# networks:
# - opencr
es:
container_name: es
image: intrahealth/elasticsearch:latest
environment:
- node.name=es01
- discovery.type=single-node
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
soft: -1
hard: -1
volumes:
- data01:/usr/share/elasticsearch/data
ports:
- 9200:9200
# networks:
# - opencr
volumes:
data01:
driver: local
# networks:
# opencr:
# driver: bridge