Skip to content

Instantly share code, notes, and snippets.

@fatmali
Last active April 2, 2019 07:00
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 fatmali/00337790415fd1cb5be85cb7505f09ac to your computer and use it in GitHub Desktop.
Save fatmali/00337790415fd1cb5be85cb7505f09ac to your computer and use it in GitHub Desktop.
ELK Docker Compose with Heartbeat
...
heartbeat:
build:
context: ./heartbeat
args:
ELK_VERSION: $ELK_VERSION
volumes:
- ./heartbeat/config/heartbeat.yml:/usr/share/heartbeat/heartbeat.yml:ro
environment:
- output.elasticsearch.hosts=["elasticsearch:9200"]
networks:
- elk
depends_on:
- elasticsearch
restart: always
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment