Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kayode-adechinan/86e6eb37bfbd4617bda63e1b88a5274c to your computer and use it in GitHub Desktop.
Save kayode-adechinan/86e6eb37bfbd4617bda63e1b88a5274c to your computer and use it in GitHub Desktop.
version: "3"
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch-oss:6.2.3
environment:
discovery.type: single-node
volumes:
- elastic-data:/usr/share/elasticsearch/data
ports:
- 9200:9200
networks:
- backend
kibana:
image: docker.elastic.co/kibana/kibana-oss:6.2.3
depends_on:
- elasticsearch
ports:
- 5601:5601
networks:
- backend
networks:
backend:
volumes:
elastic-data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment