forked from microsoft/FHIR-Converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
63 lines (58 loc) · 1.38 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
version: "3.8"
services:
fhir-converter:
container_name: built-fhir-converter
hostname: fhir-converter
restart: unless-stopped
build: ./
ports:
- "2019:2019"
volumes:
- ./config.json:/app/config.json
- /app/src/service-templates
# tty: true
# stdin_open: true
# entrypoint: bash
###
# OpenHIM
###
openhim-core:
container_name: openhim-core
image: jembi/openhim-core:latest
restart: unless-stopped
environment:
mongo_url: "mongodb://mongo-db/openhim"
mongo_atnaUrl: "mongodb://mongo-db/openhim"
NODE_ENV: "development"
ports:
- 8080:8080
- "5000:5000"
- "5001:5001"
healthcheck:
test: "curl -sSk https://openhim-core:8080/heartbeat || exit 1"
interval: 30s
timeout: 30s
retries: 3
openhim-console:
container_name: openhim-console
image: jembi/openhim-console:latest
restart: unless-stopped
ports:
- "3000:80"
#volumes:
# - ./configs/openhim-console/default.json:/usr/share/nginx/html/config/default.json
healthcheck:
test: "curl -sS http://openhim-console || exit 1"
interval: 30s
timeout: 30s
retries: 3
mongo-db:
container_name: mongo-db
image: mongo:3.4
ports:
- 27017:27017
volumes:
- "mongo-data:/data/db"
restart: unless-stopped
volumes:
mongo-data: