-
-
Save jiaaro/e8835a3142d21221c95f4477061a16b0 to your computer and use it in GitHub Desktop.
Docker compose for a minimal Kibana + Elasticsearch locally
This file contains 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.15.1 | |
container_name: es01 | |
environment: | |
- node.name=es01 | |
- cluster.name=es-docker-cluster | |
- discovery.type=single-node | |
- bootstrap.memory_lock=true | |
- "ES_JAVA_OPTS=-Xms128m -Xmx512m" | |
- xpack.security.enabled=false | |
ulimits: | |
memlock: | |
soft: -1 | |
hard: -1 | |
volumes: | |
- data01:/usr/share/elasticsearch/data | |
ports: | |
- 9201:9200 | |
networks: | |
- elastic | |
kib01: | |
image: docker.elastic.co/kibana/kibana:7.15.1 | |
container_name: kib01 | |
ports: | |
- 5602:5601 | |
environment: | |
ELASTICSEARCH_URL: http://es01:9200 | |
ELASTICSEARCH_HOSTS: '["http://es01:9200"]' | |
networks: | |
- elastic | |
volumes: | |
data01: | |
driver: local | |
networks: | |
elastic: | |
driver: bridge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment