Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2 from shazChaudhry/auth
Browse files Browse the repository at this point in the history
Auth
  • Loading branch information
shazChaudhry authored Mar 21, 2017
2 parents 69c652c + 17860eb commit 6403b1e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
16 changes: 5 additions & 11 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@ services:
- elasticsearchData:/usr/share/elasticsearch/data
networks:
- logging
environment:
xpack.security.enabled: "false"
xpack.monitoring.enabled: "false"
xpack.graph.enabled: "false"
xpack.watcher.enabled: "false"

logstash:
image: docker.elastic.co/logstash/logstash:5.2.2
Expand All @@ -22,19 +17,18 @@ services:
- logging
volumes:
- ./elk/logstash/config/pipeline:/usr/share/logstash/pipeline
- ./elk/logstash/config/logstash.yml:/usr/share/logstash/config/logstash.yml

kibana:
image: docker.elastic.co/kibana/kibana:5.2.2
ports:
- 5601:5601
networks:
- logging
volumes:
- ./elk/kibana/config:/usr/share/kibana/config
environment:
- ELASTICSEARCH_URL=http://elasticsearch:9200

networks:
logging:

volumes:
elasticsearchData:
elasticsearchData:
2 changes: 2 additions & 0 deletions elk/logstash/config/pipeline/logstash.conf
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ filter {
output {
elasticsearch {
hosts => ["elasticsearch:9200"]
user => "elastic"
password => "changeme"
}
# This will output every message on stdout.
# It is great when testing your setup, but in
Expand Down

0 comments on commit 6403b1e

Please sign in to comment.