Skip to content

Instantly share code, notes, and snippets.

@tandavala
Forked from aedorado/docker-compose.yml
Created March 17, 2021 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tandavala/3e5c3824c42190ad58a27a2ee6876dc4 to your computer and use it in GitHub Desktop.
Save tandavala/3e5c3824c42190ad58a27a2ee6876dc4 to your computer and use it in GitHub Desktop.
Docker compose file for ELK 7.9.2
version: '3.7'
services:
elasticsearch:
image: elasticsearch:7.9.2
ports:
- '9200:9200'
environment:
- discovery.type=single-node
ulimits:
memlock:
soft: -1
hard: -1
kibana:
image: kibana:7.9.2
ports:
- '5601:5601'
logstash:
image: logstash:7.9.2
ports:
- '5000:5000'
volumes:
- type: bind
source: ./logstash_pipeline/
target: /usr/share/logstash/pipeline
read_only: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment