Skip to content

Commit dc5f8f7

Browse files
committed
This patch downgrades Elasticsearch to version 7.10.2
1 parent fa3b6b9 commit dc5f8f7

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

docker-compose.deploy.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ services:
5454
networks:
5555
- overlay_net
5656
metricbeat:
57-
image: docker.elastic.co/beats/metricbeat:7.17.0
57+
image: docker.elastic.co/beats/metricbeat:7.10.2
5858

5959
user: root
6060
volumes:
@@ -71,7 +71,7 @@ services:
7171
- KIBANA_PASSWORD=${KIBANA_PASSWORD}
7272
- BEATS_USERNAME=beats_system
7373
- BEATS_PASSWORD=${ROTATING_METRICBEAT_ELASTIC_PASSWORD}
74-
command: [ '--strict.perms=false', '-system.hostfs=/hostfs' ]
74+
command: ['--strict.perms=false', '-system.hostfs=/hostfs']
7575
hostname: 'metricbeat-{{.Node.Hostname}}'
7676
restart: always
7777
deploy:
@@ -125,7 +125,7 @@ services:
125125
gelf-address: 'udp://127.0.0.1:12201'
126126
tag: 'setup-kibana-config'
127127
kibana:
128-
image: docker.elastic.co/kibana/kibana:7.17.0
128+
image: docker.elastic.co/kibana/kibana:7.10.2
129129
restart: always
130130
deploy:
131131
labels:
@@ -303,7 +303,7 @@ services:
303303

304304
setup-elasticsearch-users:
305305
image: ubuntu:bionic
306-
entrypoint: [ 'bash', '/usr/app/setup.sh' ]
306+
entrypoint: ['bash', '/usr/app/setup.sh']
307307
restart: on-failure
308308
depends_on:
309309
- elasticsearch
@@ -354,7 +354,7 @@ services:
354354
tag: 'elastalert'
355355

356356
logstash:
357-
image: logstash:7.17.0
357+
image: logstash:7.10.2
358358
command: logstash -f /etc/logstash/logstash.conf --verbose
359359
depends_on:
360360
- elasticsearch
@@ -383,8 +383,8 @@ services:
383383
depends_on:
384384
- elasticsearch
385385
- kibana
386-
cap_add: [ 'CHOWN', 'DAC_OVERRIDE', 'SETGID', 'SETUID' ]
387-
cap_drop: [ 'ALL' ]
386+
cap_add: ['CHOWN', 'DAC_OVERRIDE', 'SETGID', 'SETUID']
387+
cap_drop: ['ALL']
388388
restart: always
389389
ports:
390390
- 8200:8200

docker-compose.deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ services:
2020
restart: unless-stopped
2121

2222
elasticsearch:
23-
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.0
23+
image: docker.elastic.co/elasticsearch/elasticsearch:7.10.2
2424
restart: unless-stopped
2525
environment:
2626
- discovery.type=single-node

0 commit comments

Comments
 (0)