Skip to content

Instantly share code, notes, and snippets.

@philipbankier
Created October 21, 2019 18:45
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 philipbankier/4fc453807c72eb0ae517b14fe6ba6a70 to your computer and use it in GitHub Desktop.
Save philipbankier/4fc453807c72eb0ae517b14fe6ba6a70 to your computer and use it in GitHub Desktop.
Quick-start local Elasticsearch and kibana
version: '2'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.1.0
environment:
- discovery.type=single-node
ports:
- 127.0.0.1:9200:9200
kibana:
image: docker.elastic.co/kibana/kibana:7.1.0
ports:
- 127.0.0.1:5601:5601
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment