Skip to content

Commit

Permalink
upgraded to Logstash 2.2.2 and Kibana 4.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
spujadas committed Mar 4, 2016
1 parent d723ccd commit 4739074
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
@@ -1,15 +1,15 @@
# Dockerfile for ELK stack
# Elasticsearch 2.2.0, Logstash 2.2.0, Kibana 4.4.0
# Elasticsearch 2.2.0, Logstash 2.2.2, Kibana 4.4.1

# Build with:
# docker build -t <repo-user>/elk .

# Run with:
# docker run -p 5601:5601 -p 9200:9200 -p 5000:5000 -it --name elk <repo-user>/elk
# docker run -p 5601:5601 -p 9200:9200 -p 5044:5044 -p 5000:5000 -it --name elk <repo-user>/elk

FROM phusion/baseimage
MAINTAINER Sebastien Pujadas http://pujadas.net
ENV REFRESHED_AT 2016-02-03
ENV REFRESHED_AT 2016-03-04

###############################################################################
# INSTALLATION
Expand All @@ -33,7 +33,7 @@ RUN apt-get update -qq \
### install Logstash

ENV LOGSTASH_HOME /opt/logstash
ENV LOGSTASH_PACKAGE logstash-2.2.0.tar.gz
ENV LOGSTASH_PACKAGE logstash-2.2.2.tar.gz

RUN mkdir ${LOGSTASH_HOME} \
&& curl -O https://download.elasticsearch.org/logstash/logstash/${LOGSTASH_PACKAGE} \
Expand All @@ -52,7 +52,7 @@ RUN sed -i -e 's#^LS_HOME=$#LS_HOME='$LOGSTASH_HOME'#' /etc/init.d/logstash \
### install Kibana

ENV KIBANA_HOME /opt/kibana
ENV KIBANA_PACKAGE kibana-4.4.0-linux-x64.tar.gz
ENV KIBANA_PACKAGE kibana-4.4.1-linux-x64.tar.gz

RUN mkdir ${KIBANA_HOME} \
&& curl -O https://download.elasticsearch.org/kibana/kibana/${KIBANA_PACKAGE} \
Expand Down
2 changes: 1 addition & 1 deletion README-short.txt
@@ -1 +1 @@
Collect, search and visualise log data with ELK (Elasticsearch 2.2.0, Logstash 2.2.0, Kibana 4.4.0).
Collect, search and visualise log data with ELK (Elasticsearch 2.2.0, Logstash 2.2.2, Kibana 4.4.1).
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -6,7 +6,9 @@ This Docker image provides a convenient centralised log server and log managemen

The following tags are available:

- `es220_l220_k440`, `latest`: Elasticsearch 2.2.0, Logstash 2.2.0, and Kibana 4.4.0.
- `es220_l222_k441`, `latest`: Elasticsearch 2.2.0, Logstash 2.2.2, and Kibana 4.4.1.

- `es220_l220_k440`: Elasticsearch 2.2.0, Logstash 2.2.0, and Kibana 4.4.0.

- `E1L1K4`: Elasticsearch 1.7.3, Logstash 1.5.5, and Kibana 4.1.2.

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Expand Up @@ -11,5 +11,5 @@ elk:
ports:
- "5601:5601"
- "9200:9200"
- "5000:5000"
- "5044:5044"
- "5000:5000"
4 changes: 2 additions & 2 deletions docs/index.md
Expand Up @@ -59,8 +59,8 @@ This command publishes the following ports, which are needed for proper operatio

- 5601 (Kibana web interface).
- 9200 (Elasticsearch JSON interface).
- 5044 (Logstash Beats interface, receives logs from Beats such as Filebeat – see the *[Forwarding logs](#forwarding-logs)* section below).
- 5000 (Logstash Lumberjack interface, receives logs from Logstash forwarders – see the *[Forwarding logs](#forwarding-logs)* section below).
- 5044 (Logstash Beats interface, receives logs from Beats such as Filebeat – see the *[Forwarding logs with Filebeat](#forwarding-logs-filebeat)* section below).
- 5000 (Logstash Lumberjack interface, receives logs from Logstash forwarders – see the *[Forwarding logs with Logstash forwarder](#forwarding-logs-logstash-forwarder)* section below).

**Note** – The image also exposes Elasticsearch's transport interface on port 9300. Use the `-p 9300:9300` option with the `docker` command above to publish it.

Expand Down

0 comments on commit 4739074

Please sign in to comment.