Last active
February 11, 2022 06:52
-
-
Save dtmkeng/b21ce445c9aa1d927b3d7784a795bcf6 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: '2.2' | |
| services: | |
| es01: | |
| image: docker.elastic.co/elasticsearch/elasticsearch:7.12.1 | |
| container_name: es01 | |
| environment: | |
| - discovery.type=single-node | |
| ports: | |
| - 9200:9200 | |
| redis: | |
| image: "redis:alpine" | |
| ports: | |
| - 6379:6379 | |
| kibana: | |
| image: docker.elastic.co/kibana/kibana:7.12.1 | |
| environment: | |
| - ELASTICSEARCH_HOSTS=http://es01:9200 | |
| ports: | |
| - 5601:5601 | |
| depends_on: | |
| - es01 | |
| links: | |
| - es01 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment