Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
docker-elk
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
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
Hiep Nguyen
docker-elk
Commits
8f5b242d
Commit
8f5b242d
authored
Dec 01, 2017
by
Michał Siatkowski
Committed by
Antoine Cotten
Dec 01, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Set ELK components version from .env file" (#206)
This reverts commit
5075cafe
. Fixes #205
parent
a935ffd2
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
3 additions
and
33 deletions
+3
-33
.env
.env
+0
-1
README.md
README.md
+0
-17
docker-compose.yml
docker-compose.yml
+0
-6
Dockerfile
elasticsearch/Dockerfile
+1
-3
Dockerfile
kibana/Dockerfile
+1
-3
Dockerfile
logstash/Dockerfile
+1
-3
No files found.
.env
deleted
100644 → 0
View file @
a935ffd2
ELK_VERSION=6.0.0
README.md
View file @
8f5b242d
...
...
@@ -42,8 +42,6 @@ Based on the official Docker images:
6.
[
JVM tuning
](
#jvm-tuning
)
*
[
How can I specify the amount of memory used by a service?
](
#how-can-i-specify-the-amount-of-memory-used-by-a-service
)
*
[
How can I enable a remote JMX connection to a service?
](
#how-can-i-enable-a-remote-jmx-connection-to-a-service
)
7.
[
Updates
](
#updates
)
*
[
Using a newer stack version
](
#using-a-newer-stack-version
)
## Requirements
...
...
@@ -255,18 +253,3 @@ logstash:
environment
:
LS_JAVA_OPTS
:
"
-Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.ssl=false
-Dcom.sun.management.jmxremote.authenticate=false
-Dcom.sun.management.jmxremote.port=18080
-Dcom.sun.management.jmxremote.rmi.port=18080
-Djava.rmi.server.hostname=DOCKER_HOST_IP
-Dcom.sun.management.jmxremote.local.only=false"
```
## Updates
### Using a newer stack version
To use a different Elastic Stack version than the one currently available in the repository, simply change the version
number inside the
`.env`
file, and rebuild the stack with:
```
console
$
docker-compose build
$
docker-compose up
```
**NOTE**
: Always pay attention to the
[
upgrade instructions
](
https://www.elastic.co/guide/en/elasticsearch/reference/current/setup-upgrade.html
)
for each individual component before performing a stack upgrade.
docker-compose.yml
View file @
8f5b242d
...
...
@@ -5,8 +5,6 @@ services:
elasticsearch
:
build
:
context
:
elasticsearch/
args
:
ELK_VERSION
:
$ELK_VERSION
volumes
:
-
./elasticsearch/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml:ro
ports
:
...
...
@@ -20,8 +18,6 @@ services:
logstash
:
build
:
context
:
logstash/
args
:
ELK_VERSION
:
$ELK_VERSION
volumes
:
-
./logstash/config/logstash.yml:/usr/share/logstash/config/logstash.yml:ro
-
./logstash/pipeline:/usr/share/logstash/pipeline
...
...
@@ -37,8 +33,6 @@ services:
kibana
:
build
:
context
:
kibana/
args
:
ELK_VERSION
:
$ELK_VERSION
volumes
:
-
./kibana/config/:/usr/share/kibana/config:ro
ports
:
...
...
elasticsearch/Dockerfile
View file @
8f5b242d
ARG
ELK_VERSION
# https://github.com/elastic/elasticsearch-docker
FROM
docker.elastic.co/elasticsearch/elasticsearch-oss:
${ELK_VERSION}
FROM
docker.elastic.co/elasticsearch/elasticsearch-oss:
6.0.0
# Add your elasticsearch plugins setup here
# Example: RUN elasticsearch-plugin install analysis-icu
kibana/Dockerfile
View file @
8f5b242d
ARG
ELK_VERSION
# https://github.com/elastic/kibana-docker
FROM
docker.elastic.co/kibana/kibana-oss:
${ELK_VERSION}
FROM
docker.elastic.co/kibana/kibana-oss:
6.0.0
# Add your kibana plugins setup here
# Example: RUN kibana-plugin install <name|url>
logstash/Dockerfile
View file @
8f5b242d
ARG
ELK_VERSION
# https://github.com/elastic/logstash-docker
FROM
docker.elastic.co/logstash/logstash-oss:
${ELK_VERSION}
FROM
docker.elastic.co/logstash/logstash-oss:
6.0.0
# Add your logstash plugins setup here
# Example: RUN logstash-plugin install logstash-filter-json
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