Last active
March 27, 2020 18:12
-
-
Save rahulvramesh/945e379f2ae9ca72f41b22e57a36f9aa to your computer and use it in GitHub Desktop.
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.3' | |
| services: | |
| elasticsearch: | |
| ports: | |
| - '9200:9200' | |
| - '9300:9300' | |
| environment: | |
| - discovery.type=single-node | |
| image: 'docker.elastic.co/elasticsearch/elasticsearch:6.8.7' | |
| volumes: | |
| - data02:/usr/share/elasticsearch/data | |
| volumes: | |
| data02: | |
| driver: local |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment