Created
September 12, 2021 20:40
-
-
Save cemdrk/feef9893347951442b709f5944c47d8a to your computer and use it in GitHub Desktop.
elasticsearch search template docker-compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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