-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathdocker-swarm.yaml
More file actions
148 lines (144 loc) · 3.84 KB
/
docker-swarm.yaml
File metadata and controls
148 lines (144 loc) · 3.84 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
version: '3'
services:
########################################################## RabbitMQ
rabbitmq:
hostname: rabbitmq
image: enterpriseapplicationlog_rabbitmq
volumes:
- rabbitmq_data:/var/lib/rabbitmq/mnesia
ports:
- "15672:15672" #management
- "15692:15692" #prometheus
- "5672:5672" #amqp
healthcheck:
test: ["CMD-SHELL", "curl -I -s -L http://localhost:15672 || exit 1"]
interval: 30s
timeout: 20s
retries: 5
networks:
- log
environment:
RABBITMQ_DEFAULT_USER: logUser
RABBITMQ_DEFAULT_PASS: logPwd
RABBITMQ_DEFAULT_VHOST: EnterpriseLog
########################################################## Elastic
elasticsearch:
hostname: elasticsearch
image: docker.elastic.co/elasticsearch/elasticsearch:7.13.0-amd64
environment:
- discovery.type=single-node
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
- http.host=0.0.0.0
- transport.host=127.0.0.1
- network.host=0.0.0.0
- cluster.name="elastic_stack_logging"
- node.name="elastic_stack_logging_data"
- discovery.zen.minimum_master_nodes=1
- http.cors.enabled=true
- http.cors.allow-origin="*"
volumes:
- elasticsearch_data:/usr/share/elasticsearch/data
ports:
- "9200:9200"
- "9300:9300"
healthcheck:
test: ["CMD-SHELL", "curl -I -s -L http://localhost:9200 || exit 1"]
interval: 30s
timeout: 20s
retries: 5
networks:
- log
########################################################## Kibana
kibana:
hostname: kibana
image: docker.elastic.co/kibana/kibana:7.13.0-amd64
environment:
- server.name=kibana
- server.host="0"
- elasticsearch.url=http://elasticsearch:9200
depends_on:
- elasticsearch
ports:
- "5601:5601"
healthcheck:
test: ["CMD-SHELL", "curl -I -s -L http://localhost:5601/ || exit 1"]
interval: 30s
timeout: 20s
retries: 5
networks:
- log
########################################################## LogStash
logstash:
hostname: logstash
image: enterpriseapplicationlog_logstash
command: logstash -f /config/logstash.conf
depends_on:
- rabbitmq
- elasticsearch
networks:
- log
########################################################## MetricBeat
metricbeat:
hostname: metricbeat
image: enterpriseapplicationlog_metricbeat
user: root
volumes:
- /var/run/docker.sock:/var/run/docker.sock
depends_on:
- elasticsearch
- kibana
- rabbitmq
restart: on-failure
networks:
- log
########################################################## HeartBeat
heartbeat:
hostname: heartbeat
image: enterpriseapplicationlog_heartbeat
depends_on:
- elasticsearch
- kibana
restart: on-failure
networks:
- log
########################################################## APM
apm:
hostname: apm
image: enterpriseapplicationlog_apm
depends_on:
- elasticsearch
- kibana
ports:
- "8200:8200"
healthcheck:
test: ["CMD-SHELL", "curl -I -s -L http://localhost:8200 || exit 1"]
interval: 30s
timeout: 20s
retries: 5
restart: on-failure
networks:
- log
########################################################## ElasticHQ
elastichq:
hostname: elastichq
image: enterpriseapplicationlog_elastichq
build:
context: ./elastichq
depends_on:
- elasticsearch
ports:
- "5000:5000"
healthcheck:
test: ["CMD-SHELL", "curl -I -s -L http://localhost:5000 || exit 1"]
interval: 30s
timeout: 20s
retries: 5
restart: on-failure
networks:
- log
volumes:
rabbitmq_data:
elasticsearch_data:
networks:
log:
driver: overlay