Skip to content

Instantly share code, notes, and snippets.

@jforcada
Created January 12, 2020 21:19
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 jforcada/22bbd61f1299c3136deddc3b51e30f94 to your computer and use it in GitHub Desktop.
Save jforcada/22bbd61f1299c3136deddc3b51e30f94 to your computer and use it in GitHub Desktop.
Elasticsearch & Kibana local docker environment
version: '3'
services:
elasticsearch:
image: 'elasticsearch:7.5.1'
ports:
- 9200:9200
- 9300:9300
environment:
- discovery.type=single-node
volumes:
- 'el00:/usr/share/elasticsearch/data'
kibana:
image: 'kibana:7.5.1'
depends_on:
- elasticsearch
ports:
- 5601:5601
volumes:
el00:
driver: local
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment