-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
79 lines (74 loc) · 1.76 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
71
72
73
74
75
76
77
78
version: '3'
services:
fhir-api:
depends_on:
- elasticsearch
build:
context: .
dockerfile: Dockerfile
environment:
SERVER_PORT: 3000
ES_HOST: http://elasticsearch:9200
RESOURCE_SERVER: http://localhost:3000/
CLIENT_ID: client
CLIENT_SECRET: secret
ports:
- "3000:3000"
volumes:
- ./src:/srv/src/src
command: yarn start
logstash:
image: docker.elastic.co/logstash/logstash:7.6.0
build:
context: logstash/.
dockerfile: Dockerfile
environment:
LS_OPTS: "--config.reload.automatic"
ports:
- "5044:5044"
- "9600:9600"
kibana:
image: docker.elastic.co/kibana/kibana:7.6.0
ports:
- "5601:5601"
presto-proxy:
image: google/cloud-sdk
command: ["tail", "-f", "/dev/null"]
ports:
- "8080:8080"
expose:
- 8080
elasticsearch:
image: elasticsearch:7.6.0
environment:
- discovery.type=single-node
- cluster.name=elasticsearch
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms1024m -Xmx1024m"
- http.cors.enabled=true
- http.cors.allow-origin=http://localhost:1358,http://127.0.0.1:1358
- http.cors.allow-headers=X-Requested-With,X-Auth-Token,Content-Type,Content-Length,Authorization
- http.cors.allow-credentials=true
ports:
- "9200:9200"
- "9300:9300"
ulimits:
memlock:
soft: -1
hard: -1
elastichq:
image: elastichq/elasticsearch-hq
ports:
- "5000:5000"
mssql:
image: microsoft/mssql-server-linux:2017-latest
ports:
- "1433:1433"
environment:
- ACCEPT_EULA=Y
- MSSQL_SA_PASSWORD=Password123
- MSSQL_PID=Developer
volumes:
- mssqldata:/var/opt/mssql
volumes:
mssqldata: