Created
April 22, 2020 12:41
-
-
Save tsh-code/ecfae7514b88c050ee21ce4caa6b8290 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.7" | |
| services: | |
| elasticsearch: | |
| image: elasticsearch:7.6.0 | |
| ports: | |
| - "9200:9200" | |
| - "9300:9300" | |
| environment: | |
| discovery.type: single-node | |
| xpack.license.self_generated.type: trial | |
| networks: | |
| - elk | |
| kibana: | |
| image: kibana:7.6.0 | |
| depends_on: | |
| - elasticsearch | |
| ports: | |
| - "5601:5601" | |
| environment: | |
| SERVER_NAME: kibana | |
| ELASTICSEARCH_HOSTS: <http://elasticsearch:9200> | |
| networks: | |
| - elk | |
| networks: | |
| elk: | |
| driver: bridge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment