Skip to content

Instantly share code, notes, and snippets.

@cemdrk
Created September 12, 2021 20:40
Show Gist options
  • Save cemdrk/feef9893347951442b709f5944c47d8a to your computer and use it in GitHub Desktop.
Save cemdrk/feef9893347951442b709f5944c47d8a to your computer and use it in GitHub Desktop.
elasticsearch search template docker-compose
version: "3"
services:
elastic:
image: docker.elastic.co/elasticsearch/elasticsearch:7.14.0
environment:
- discovery.type=single-node
ports:
- 9200:9200
kibana:
image: docker.elastic.co/kibana/kibana:7.14.0
environment:
- ELASTICSEARCH_HOSTS=http://elastic:9200
ports:
- 5601:5601
depends_on:
- elastic
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment