Skip to content

o-kasian/alpine-logstash

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Logstash docker image based on Alpine Linux

Build

$ make build

DockerHub

This image is published on DockerHub as gafiatulin/alpine-logstash.

Click here to see it's DockerHub homepage

Usage

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 logstash -e 'input { stdin { } } output { stdout { } }'
Start Logstash with configuration file

If you need to run logstash with a configuration file, logstash.conf, that's located in your current directory, you can use the logstash image as follows:

$ docker run -it --rm -v "$PWD":/config-dir logstash logstash -f /config-dir/logstash.conf

About

Logstash docker image based on Alpine Linux

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 53.1%
  • Makefile 46.9%