forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
704 B
22 lines
704 B
# You need to run 'sysctl -w vm.max_map_count=262144' on the host machine
|
|
|
|
elasticsearch-latest:
|
|
image: docker.elastic.co/elasticsearch/elasticsearch:8.0.0-beta1
|
|
command: elasticsearch
|
|
environment:
|
|
- "discovery.type=single-node"
|
|
- "xpack.license.self_generated.type=basic"
|
|
- "xpack.security.enabled=false"
|
|
ports:
|
|
- "14200:9200"
|
|
- "14300:9300"
|
|
|
|
# TODO: uncomment when https://github.com/grafana/fake-data-gen/pull/20 is merged
|
|
# fake-elastic-latest-data:
|
|
# image: grafana/fake-data-gen
|
|
# links:
|
|
# - elasticsearch-latest
|
|
# environment:
|
|
# FD_SERVER: elasticsearch-latest
|
|
# FD_DATASOURCE: elasticsearch8
|
|
# FD_PORT: 9200
|
|
|