Last active
July 9, 2020 14:34
-
-
Save abechanta/f7cd5f2c9dbc0745d6940618d0467135 to your computer and use it in GitHub Desktop.
Elasticsearch/Kibana for dev on 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.8' | |
| services: | |
| elasticsearch: | |
| image: elasticsearch:7.8.0 | |
| networks: | |
| - elastic | |
| restart: always | |
| ports: | |
| - 9200:9200 | |
| - 9300:9300 | |
| volumes: | |
| - ./data:/usr/share/elasticsearch/data | |
| environment: | |
| discovery.type: single-node | |
| kibana: | |
| image: kibana:7.8.0 | |
| networks: | |
| - elastic | |
| restart: always | |
| ports: | |
| - 5601:5601 | |
| links: | |
| - elasticsearch | |
| depends_on: | |
| - elasticsearch | |
| networks: | |
| elastic: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment