Image was tested on my ODROID-U3. It should also work on Raspberry Pi, but if not, you'll have to build it yourself.
$ git clone https://github.com/rpidockers/logstash.git
$ docker build -t rpidockers/logstash logstash
Start Logstash with commandline configuration
If you need to run logstash with configuration provided on the commandline, you can use the logstash image as follows:
$ docker run -it --rm logstash rpidockers/logstash -e 'input { stdin { } } output { stdout { } }'
Start Logstash with configuration directory
If you need to run logstash with a configuration files stored in <local_dir>, you can use the logstash image as follows:
$ docker run -d -v <local_dir>:/config-dir rpidockers/logstash logstash -f /config-dir
Content type
Image
Digest
sha256:e2d4f6866…
Size
317 MB
Last updated
almost 11 years ago
docker pull rpidockers/logstash