Skip to content

Instantly share code, notes, and snippets.

@allanfreitas
Forked from tsh-code/docker-compose.yaml
Created May 9, 2020 13:22
Show Gist options
  • Save allanfreitas/bb02e043de31e109e0d8ffd534413714 to your computer and use it in GitHub Desktop.
Save allanfreitas/bb02e043de31e109e0d8ffd534413714 to your computer and use it in GitHub Desktop.
version: "3.7"
services:
elasticsearch:
image: elasticsearch:7.6.0
ports:
- "9200:9200"
- "9300:9300"
environment:
discovery.type: single-node
xpack.license.self_generated.type: trial
networks:
- elk
kibana:
image: kibana:7.6.0
depends_on:
- elasticsearch
ports:
- "5601:5601"
environment:
SERVER_NAME: kibana
ELASTICSEARCH_HOSTS: <http://elasticsearch:9200>
networks:
- elk
networks:
elk:
driver: bridge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment