Skip to content

Instantly share code, notes, and snippets.

@anjilinux
Forked from aedorado/docker-compose.yml
Created April 10, 2023 07:16
Show Gist options
  • Select an option

  • Save anjilinux/a04af2e0d6daa80946d4aa188db1ee30 to your computer and use it in GitHub Desktop.

Select an option

Save anjilinux/a04af2e0d6daa80946d4aa188db1ee30 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