forked from intrahealth/client-registry
-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.cicd.yml
60 lines (52 loc) · 1.06 KB
/
docker-compose.cicd.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
version: '3'
services:
opencr:
container_name: opencr
image: intrahealth/opencr
ports:
- "3000:3000"
depends_on:
- fhir
- opensearch
restart: always
environment:
- NODE_ENV=cicd
# networks:
# - opencr
fhir:
container_name: hapi-fhir
image: hapiproject/hapi:v5.1.0
ports:
- "8080:8080"
# networks:
# - opencr
opensearch:
container_name: opensearch
image: intrahealth/opensearch:latest
environment:
- cluster.name=opensearch-cluster
- node.name=opensearch-node1
- discovery.type=single-node
- bootstrap.memory_lock=true
- plugins.security.disabled=true
- "OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536
hard: 65536
volumes:
- data01:/usr/share/opensearch/data
ports:
- 9200:9200
- 9600:9600
# networks:
# - opencr
volumes:
data01:
driver: local
# networks:
# opencr:
# driver: bridge