forked from exceptionless/Exceptionless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
71 lines (61 loc) · 1.66 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.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.17.1
environment:
discovery.type: single-node
xpack.security.enabled: 'false'
ES_JAVA_OPTS: -Xms1g -Xmx1g
ports:
- 9200:9200
kibana:
depends_on:
- elasticsearch
image: docker.elastic.co/kibana/kibana:7.17.1
ports:
- 5601:5601
apm:
image: docker.elastic.co/apm/apm-server:7.17.1
depends_on:
- elasticsearch
ports:
- 8200:8200
command: >
apm-server -e
-E apm-server.rum.enabled=true
-E setup.kibana.host=kibana:5601
-E setup.template.settings.index.number_of_replicas=0
-E apm-server.kibana.enabled=true
-E apm-server.kibana.host=kibana:5601
-E output.elasticsearch.hosts=["elasticsearch:9200"]
otel:
image: otel/opentelemetry-collector:latest
ports:
- 4317:4317
volumes:
- ./otel-config.yml:/etc/otel-config.yaml:ro
command: [ "--config=/etc/otel-config.yaml", "--log-level=DEBUG" ]
redis:
image: redis:6-alpine
ports:
- 6379:6379
mail:
image: mailhog/mailhog:latest
ports:
- 8025:8025
- 1025:1025
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