Skip to content

Instantly share code, notes, and snippets.

@t04glovern
Created November 15, 2018 14:07
Show Gist options
  • Save t04glovern/0523d928ad7c2e92d9fc3c3cd0dc53c9 to your computer and use it in GitHub Desktop.
Save t04glovern/0523d928ad7c2e92d9fc3c3cd0dc53c9 to your computer and use it in GitHub Desktop.
Elasticsearch / Kibana 6.5.0

Elasticsearch / Kibana 6.5.0

Up

docker-compose -f ./docker-compose.yml up -d

Down

docker-compose -f ./docker-compose.yml down -v

version: "2"
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:6.5.0
ports:
- "9200:9200"
volumes:
- ./esdata/:/usr/share/elasticsearch/data/
kibana:
image: docker.elastic.co/kibana/kibana:6.5.0
ports:
- "5601:5601"
environment:
- ELASTICSEARCH_URL=http://elasticsearch:9200
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment