Skip to content

Instantly share code, notes, and snippets.

@arun9theja
Forked from aedorado/docker-compose.yml
Created April 20, 2021 10:56
Show Gist options
  • Select an option

  • Save arun9theja/0e3adb0885b9dd62d934c72431ae0065 to your computer and use it in GitHub Desktop.

Select an option

Save arun9theja/0e3adb0885b9dd62d934c72431ae0065 to your computer and use it in GitHub Desktop.
Setup ES and Kibana using Docker Compose
version: '3.7'
services:
elasticsearch:
image: elasticsearch:7.9.2
ports:
- '9200:9200'
environment:
- discovery.type=single-node
ulimits:
memlock:
soft: -1
hard: -1
kibana:
image: kibana:7.9.2
ports:
- '5601:5601'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment