1
0
mirror of https://github.com/rlister/dockerfiles.git synced 2025-12-12 17:26:15 +00:00

build logstash 1.5.0

This commit is contained in:
Richard Lister
2015-05-19 22:12:24 -04:00
parent 6e088352d8
commit 9157276597
4 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1 @@
input { stdin { } } output { stdout {} }

21
logstash/1.5.0/Dockerfile Normal file
View File

@@ -0,0 +1,21 @@
FROM debian:jessie
MAINTAINER Ric Lister <rlister@gmail.com>
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive \
apt-get install -yq \
openjdk-7-jre-headless \
wget
ENV LS_VERSION 1.5.0
WORKDIR /app
RUN cd /tmp && \
wget -q http://download.elastic.co/logstash/logstash/logstash-${LS_VERSION}.tar.gz && \
tar zxf /tmp/logstash-${LS_VERSION}.tar.gz -C /app --strip-components=1 && \
rm -f /tmp/logstash-${LS_VERSION}.tar.gz
#RUN bin/plugin install contrib
ENTRYPOINT [ "bin/logstash" ]

View File

@@ -0,0 +1 @@
input { stdin { } } output { stdout {} }