Created Dockerfile for the logstash image build.

This commit is contained in:
Michael Tarleton 2016-06-13 18:06:22 -05:00
parent 3b8b9e265f
commit 0836021533
2 changed files with 3 additions and 1 deletions

View File

@ -4,8 +4,9 @@ elasticsearch:
ports:
- "9200:9200"
- "9300:9300"
logstash:
image: logstash:latest
build: logstash/
command: logstash -f /etc/logstash/conf.d/logstash.conf
volumes:
- ./logstash/config:/etc/logstash/conf.d

1
logstash/Dockerfile Normal file
View File

@ -0,0 +1 @@
FROM logstash:latest