-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
70 lines (70 loc) · 1.71 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
64
65
66
67
68
69
70
version: '3.9'
services:
tofhir-server:
image: srdc/tofhir-server:latest
container_name: tofhir-server
hostname: tofhir-server
environment:
- FHIR_DEFINITIONS_ENDPOINT=http://onfhir:8080/fhir
- FHIR_REPO_URL=http://onfhir:8080/fhir
- APP_CONF_FILE=/usr/local/tofhir/conf/docker/tofhir-server.conf
- FLUENT_HOST=fluentd
- CONTEXT_PATH=conf
ports:
- "8085:8085"
networks:
- tofhir-network
volumes:
- './data-integration-suite:/usr/local/tofhir/conf'
- './tofhir-docker-logs:/usr/local/tofhir/logs'
tofhir-web:
image: srdc/tofhir-web:latest
container_name: tofhir-web
ports:
- "8087:80"
networks:
- tofhir-network
# Elasticsearch, Fluentd and Kibana stack for mapping job log management
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.15.2
container_name: elasticsearch
environment:
- discovery.type=single-node
ports:
- "9200:9200"
networks:
- tofhir-network
volumes:
- elasticsearch_data:/usr/share/elasticsearch/data
fluentd:
build: ./fluentd
container_name: fluentd
image: srdc/tofhir-fluentd:latest
environment:
- FORWARD_PORT=24224
- HOST=elasticsearch
- PORT=9200
ports:
- "24224:24224"
- "24224:24224/udp"
networks:
- tofhir-network
kibana:
build:
context: ./kibana
dockerfile: ./Dockerfile
image: srdc/tofhir-kibana:latest
container_name: kibana
ports:
- "5601:5601"
networks:
- tofhir-network
depends_on:
- elasticsearch
networks:
tofhir-network:
name: onfhir-network
external: true
volumes:
elasticsearch_data:
driver: local