forked from exceptionless/Exceptionless
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (36 loc) · 946 Bytes
/
docker-compose.yml
File metadata and controls
43 lines (36 loc) · 946 Bytes
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
version: '3.5'
# NOTE: This docker-compose file is for running services required to work on Exceptionless.
# For self-hosting, look here: https://github.com/exceptionless/Exceptionless/tree/master/samples
services:
elasticsearch:
image: exceptionless/elasticsearch:7.10.0
environment:
discovery.type: single-node
xpack.security.enabled: 'false'
ES_JAVA_OPTS: -Xms1g -Xmx1g
ports:
- 9200:9200
- 9300:9300
kibana:
depends_on:
- elasticsearch
image: docker.elastic.co/kibana/kibana:7.10.0
ports:
- 5601:5601
redis:
image: redis:6.0-alpine
ports:
- 6379:6379
ui:
image: exceptionless/ui:latest
environment:
AppMode: Development
EX_ApiUrl: http://localhost:5000
EX_Html5Mode: 'true'
ports:
- 5100:80
ready:
image: dadarek/wait-for-dependencies
command: elasticsearch:9200
depends_on:
- elasticsearch