-
-
Save nightlord189/f186e70ca37871acc12627b9ec49576e to your computer and use it in GitHub Desktop.
Setup ES and Kibana using 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.7' | |
| services: | |
| elasticsearch: | |
| image: elasticsearch:7.9.3 | |
| ports: | |
| - '9200:9200' | |
| environment: | |
| - discovery.type=single-node | |
| ulimits: | |
| memlock: | |
| soft: -1 | |
| hard: -1 | |
| kibana: | |
| image: kibana:7.9.3 | |
| ports: | |
| - '5601:5601' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment