Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
docker-elk
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
段孔乐
docker-elk
Commits
aa06a825
Commit
aa06a825
authored
May 08, 2017
by
Mark Davidson
Committed by
Antoine Cotten
May 08, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update to 5.4 (#120)
Includes required change for logstash config and disables the new machine learning functionality in x-pack by default.
parent
a9e7c3d8
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
4 deletions
+8
-4
docker-compose.yml
docker-compose.yml
+1
-0
Dockerfile
elasticsearch/Dockerfile
+1
-1
Dockerfile
kibana/Dockerfile
+1
-1
kibana.yml
kibana/config/kibana.yml
+1
-0
Dockerfile
logstash/Dockerfile
+1
-1
logstash.yml
logstash/config/logstash.yml
+3
-1
No files found.
docker-compose.yml
View file @
aa06a825
...
...
@@ -14,6 +14,7 @@ services:
# https://www.elastic.co/guide/en/x-pack/current/installing-xpack.html#xpack-enabling
xpack.security.enabled
:
"
false"
xpack.monitoring.enabled
:
"
false"
xpack.ml.enabled
:
"
false"
xpack.graph.enabled
:
"
false"
xpack.watcher.enabled
:
"
false"
networks
:
...
...
elasticsearch/Dockerfile
View file @
aa06a825
# https://github.com/elastic/elasticsearch-docker
FROM
docker.elastic.co/elasticsearch/elasticsearch:5.
3
.0
FROM
docker.elastic.co/elasticsearch/elasticsearch:5.
4
.0
# Add your elasticsearch plugins setup here
# Example: RUN elasticsearch-plugin install analysis-icu
kibana/Dockerfile
View file @
aa06a825
# https://github.com/elastic/kibana-docker
FROM
docker.elastic.co/kibana/kibana:5.
3
.0
FROM
docker.elastic.co/kibana/kibana:5.
4
.0
# Add your kibana plugins setup here
# Example: RUN kibana-plugin install <name|url>
kibana/config/kibana.yml
View file @
aa06a825
...
...
@@ -12,5 +12,6 @@ elasticsearch.url: http://elasticsearch:9200
#
xpack.security.enabled
:
false
xpack.monitoring.enabled
:
false
xpack.ml.enabled
:
false
xpack.graph.enabled
:
false
xpack.reporting.enabled
:
false
logstash/Dockerfile
View file @
aa06a825
# https://github.com/elastic/logstash-docker
FROM
docker.elastic.co/logstash/logstash:5.
3
.0
FROM
docker.elastic.co/logstash/logstash:5.
4
.0
# Add your logstash plugins setup here
# Example: RUN logstash-plugin install logstash-filter-json
logstash/config/logstash.yml
View file @
aa06a825
...
...
@@ -3,9 +3,10 @@
## from https://github.com/elastic/logstash-docker/blob/master/build/logstash/config/logstash.yml
#
http.host
:
"
0.0.0.0"
path.config
:
/usr/share/logstash/pipeline
## Disable X-Pack
## see https://www.elastic.co/guide/en/x-pack/current/xpack-settings.html
## https://www.elastic.co/guide/en/x-pack/current/installing-xpack.html#xpack-enabling
#
xpack.monitoring.enabled
:
false
xpack.monitoring.enabled
:
false
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment