Skip to content

Instantly share code, notes, and snippets.

@lukeyeager
Created May 18, 2022 14:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukeyeager/b93da1342d5d4660f1ef205770f7af89 to your computer and use it in GitHub Desktop.
Save lukeyeager/b93da1342d5d4660f1ef205770f7af89 to your computer and use it in GitHub Desktop.
ELK 8.2.0 minimal docker-compose.yml
services:
elasticsearch:
image: elasticsearch:8.2.0
ports:
- '9200:9200'
environment:
# https://www.elastic.co/guide/en/elasticsearch/reference/8.2/docker.html#docker-configuration-methods
ES_SETTING_DISCOVERY_TYPE: 'single-node'
ES_SETTING_XPACK_SECURITY_ENABLED: 'false'
kibana:
image: kibana:8.2.0
ports:
- '5601:5601'
environment:
# https://www.elastic.co/guide/en/kibana/8.2/docker.html#environment-variable-config
XPACK_SECURITY_ENABLED: 'false'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment